# 导入数学库
import math
# 返回 30 度的正弦值
print(math.sin(math.radians(30)))
# 返回 90 度的正弦值
print(math.sin(math.radians(90)))