Files

7 lines
134 B
Python
Raw Permalink 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))