# 导入数学库
import math
# 返回不同数值的余弦值
print(math.cos(0.00))
print(math.cos(-1.23))
print(math.cos(10))
print(math.cos(3.14159265359))