sum = x + y
difference = x - y
product = x * y
quotient = x / y
3 / 2 = 1.5
integer quotient = x // y
3 // 2 = 1 (decimal is truncated)