# convert.py
# A program that converts a Celsius temperature to its equivalent
# temperature in Fahrenheit.
#

c = input("Please enter a temperature in Celsius ")
f = (9.0/5.0) * c + 32
print f, "degrees Fahrenheit is equivalent to", c, "degrees Celsius"

