4. Teplota vo Farenheitoch

f = input("Vonku je °F: ")
f = float(f)
c = (5 / 9) * (f - 32)
print(f"Doma by bolo na teplomeri {c:.2f}°C.")