2025-01-10 22:29:51 +08:00

10 lines
163 B
Python

from math import *
n=(int)input()
ceil(n/24) # 上取整
round() # 四舍五入
abs() # 绝对值
max() # 最大值
min() # 最小值
pow(2,2) # 乘方