mirror of
https://github.com/tiennm99/HCMUT.git
synced 2026-08-13 11:22:04 +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=' ') |