2025-05-12 22:17:12 +09:00

2 lines
60 B
Python
Executable File

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