# 导入数学库
import math
# 返回不同数值的反双曲余弦值
print(math.acosh(7))
print(math.acosh(56))
print(math.acosh(2.45))
print(math.acosh(1))