Given integers a = 29 and b = 4, calculate and print integer quotient a // b and remainder a % b formatted as 29 = 4 * 7 + 1.
a = 29
b = 4
a // b
a % b
29 = 4 * 7 + 1
29 = 4 * 7 + 1 [✓] Arithmetic verified (Time: 0.011s, Memory: 13.7 MB)