#!/usr/bin/python # c2f.py # # Converts a Celsius temperature to Fahrenheit. # # AMJ # 15th October 2002 c = input ("Enter Celsius temperature: ") f = ((9.0 / 5.0) * c) + 32 print c, "Celsius is", f, "Fahrenheit."