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