I am making a Celsius to Fahrenheit computer, but when I take the user's input, the program crashes.
I tried using raw_input, but i've got python 3.6.
print("Enter Celsius degrees to convert them into Fahrenheit degrees: ")
x = input()
y = x * 9 / 5 + 32
print(y)
input()
It should take the input, then automatically convert it into Fahrenheit, then print the Fahrenheit degrees.