python
first = int(input())
second = int(input())
print(first // second, first % second)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
python
first = int(input())
second = int(input())
print(first // second, first % second)