# 导入数学库
import math
# 返回 x 乘以 2 的 i 次方的值
print(math.ldexp(9, 3))
print(math.ldexp(-5, 2))
print(math.ldexp(15, 2))