print("w=theta/t") theta = float(input("theta: ")) t = float(input("t: ")) w = theta/t print(w)