Answer:
C = int(input('enter your input:'))
F = (C * (9 / 5) + 32)
print('{} in Fahrenheit is {}'. format(C, F))
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