inp = input('Podaj temperaturÄ™ w skali Fahrenheita: ') fahr = float(inp) cel = (fahr - 32.0) * 5.0 / 9.0 print(cel)