from math import * # math 라이브러리 안에 있는 모든 것을 이용하겠다.
print(floor(4.94)) # 4 / 내림
print(ceil(3.14)) # 4 / 올림
print(sqrt(16)) # 4.0 / 제곱근(무엇의 제곱이니?)