# 导入数学库
import math
# 返回不同数值的双曲余弦值
print(math.cosh(1))
print(math.cosh(8.90))
print(math.cosh(0))
print(math.cosh(1.52))