Files

7 lines
130 B
Python
Raw Permalink Normal View History

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