# 导入数学库
import math
# 返回不同数值的常用对数(以 10 为底的对数)
print(math.log10(2.7183))
print(math.log10(2))
print(math.log10(1))