import math

# Input: angle in degrees
degrees = float(input())

# Conversion formula
radians = degrees * (math.pi / 180)

# Output rounded to 2 decimal places
print(f"{radians:.2f}")