# 导入数学库
import math
# 返回不同数字的整数截断部分
print(math.trunc(2.77))
print(math.trunc(8.32))
print(math.trunc(-99.29))