Item 3: Integer Division and Remainder

print(1//2, -1//2, (-1)//2, -(1//2))

print(1%2, -1%2, (-1)%2, -(1%2))