# 导入数学库
import math
# 返回不同数值的 log(1+number) 值
print(math.log1p(2.7183))
print(math.log1p(2))
print(math.log1p(1))