fork download
  1. celsius = float(input("Introduce los grados Celsius: "))
  2. fahrenheit = celsius * 9/5 + 32
  3. print("Fahrenheit:", fahrenheit)
Success #stdin #stdout 0.12s 14112KB
stdin
25
stdout
Introduce los grados Celsius: Fahrenheit: 77.0