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