fork download
  1. celsius = 3
  2. fahrenheit = celsius * 9/5 + 32
  3. print("Fahrenheit:", fahrenheit)
  4. # your code goes here
Success #stdin #stdout 0.01s 7204KB
stdin
Standard input is empty
stdout
('Fahrenheit:', 37)