Respuesta :
Answer:
50 degrees C
Step-by-step explanation:
5/9(F-32)
5/9=.55555556
(122-32)=90
90×.555555556=50
Answer:
C = int(input('enter your input:'))
F = (C * (9 / 5) + 32)
print('{} in Fahrenheit is {}'. format(C, F))
Step-by-step explanation:
C = int(input('enter your input:')) #def C with int inuput
F = (C * (9 / 5) + 32) #formula to convert
print('{} in Fahrenheit is {}'. format(C, F)) # Print function format str int input to conversion