# 导入数学库
import math
# 将弧度值转换为角度值
print(math.degrees(8.90))
print(math.degrees(-20))
print(math.degrees(1))
print(math.degrees(90))