import math as m
v=float(input("Enter the initial velocity in m/s = "))
print("Enter the value of Θ in sinΘ")
s=float(input(""))
print("Enter the value of Θ in cosΘ")
c=float(input(""))
r=(v**2*(m.sin(s))*(m.cos(c)))/9.814
print("The Horizontal range = ",r)