Files
python/fejezet 6/f18/f18.py

7 lines
134 B
Python
Raw Normal View History

2021-12-10 08:46:38 +01:00
fahrenheit = int(input())
def celsiusra(fahrenheit):
celsius = fahrenheit / 33.8
return celsius
print(celsiusra(fahrenheit))