Files
CodeObject/storage/zeta/py/completed/1271.py

4 lines
60 B
Python

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