set fahrenheit to 0 set celcius to 0 print "Enter tempeartue in Fahrenheit: " input into fahrenheit set celcius = 5 / 9 * (fahrenheit - 32) print fahrenheit + " degrees F = " + celcius + " degrees C"