@[zhujianyu2014](/user/991294)
```python
print('',end=' ')
```
by 蛋蛋工作室 @ 2023-04-30 21:20:25
dividend, divisor = map(int, input().split())
quotient = dividend // divisor
remainder = dividend % divisor
print(quotient, remainder)
by Mr_Tianyu @ 2023-06-27 22:39:29
谢啦
by wisjsks @ 2024-02-23 15:42:25
```python
a,b=map(int,input().split(" "))
print(a//b,end=" ")
print(a%b)
```
(考古)
by _liujunming_ @ 2024-08-26 10:45:26