Consider:
def välgu_kaugus(aeg):
    kiirus = 300 / 1000
    valem = aeg * kiirus
    return valem
print(välgu_kaugus(float(input("Mitu sekundid kulus välgu nägemiseks müristamise kuulmiseni? "))))
This is my little shitty program. When I input 15 it gives me 4.5, but I want it to round 4.5 to 5, but using the round command it rounds my 4.5 to 4 for some reason. How can I make it to round to 5?
 
     
     
     
    