mirror of
https://github.com/tiennm99/CSX101.git
synced 2026-06-06 00:14:40 +00:00
4 lines
81 B
Python
4 lines
81 B
Python
f = float(input())
|
|
c = (f-32)*5/9
|
|
k = c + 273.15
|
|
print("%g %g" % (c, k), sep=' ') |