2024-03-07 23:42:52 +09:00

2 lines
60 B
Python

a, b = map(int, input().split())
print(a+b,a-b,a*b,a//b,a%b)