
# / is always float
print(5/2)


# // is integer division
print(5//2)
