# Import math Library
import math
# Return the inverse hyperbolic cosine of different numbers
print(math.acosh(7))
print(math.acosh(56))
print(math.acosh(2.45))
print(math.acosh(1))