2 lines
60 B
Python
Executable File
2 lines
60 B
Python
Executable File
a, b = map(int, input().split())
|
|
print(a+b,a-b,a*b,a//b,a%b) |