# 导入数学库
import math
# 返回不同数值的正切值
print(math.tan(90))
print(math.tan(-90))
print(math.tan(45))
print(math.tan(60))