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