def fallhöhe(t):
    g=9.81
    s=0.5 * g * t**2
    return s

zeit=float(input("fallzeit s: "))
höhe=fallhöhe(zeit)
print("Fallhöhe:", round(höhe, 2),"m")