from math import pi

print("d*pi/180")
d = float(input("Degrees: "))
r = d*pi/180
print("Radians=")
print(r)