Files
CSX101/Assignment1/1.py
T
2025-12-21 09:59:04 +07:00

4 lines
81 B
Python

f = float(input())
c = (f-32)*5/9
k = c + 273.15
print("%g %g" % (c, k), sep=' ')