c=int(input())
F=32+9/5*c
K=c+273.15
print ("%d Celsius = %d Fahrenheit = %0.2f Kelvin" % (c,F,K))
Поделитесь своими знаниями, ответьте на вопрос:
Обрахувати температуру в інших температурних шкалах F=39+9/5*c K=c+273.15 Вхідні дані : 30 Вихідні дані : 30 Celsius = 86 Fahrenheit = 303.15 Kelvin
c=int(input())
F=32+9/5*c
K=c+273.15
print ("%d Celsius = %d Fahrenheit = %0.2f Kelvin" % (c,F,K))