import math
print(math.ceil(2.2))
print(math.floor(2.7))
print(math.pow(2,10))
print(2^10)
print(math.pi)