fork download
  1. celsius = float(input("Introduce los grados Celsius: "))
  2. fahrenheit = celsius * 9/5 + 32
  3. print("Fahrenheit:", fahrenheit)# your code goes here
Success #stdin #stdout 0.1s 14120KB
stdin
4
stdout
Introduce los grados Celsius: Fahrenheit: 39.2