Source Code:
(back to article)
# Integer addition print(1 + 2) # Integer subtraction print(3 - 1) # Integer multiplication print(2 * 3) # Integer division print(6 / 2)
Result:
Report an issue