7 lines
134 B
Python
7 lines
134 B
Python
|
|
fahrenheit = int(input())
|
||
|
|
|
||
|
|
def celsiusra(fahrenheit):
|
||
|
|
celsius = fahrenheit / 33.8
|
||
|
|
return celsius
|
||
|
|
|
||
|
|
print(celsiusra(fahrenheit))
|