整除:a//b
取余:a%b
by syr1125 @ 2022-11-03 21:42:30
a,b=map(int,input().split(' '))
print(a//b,a%b)
by wisjsks @ 2023-04-30 20:36:16
dividend, divisor = map(int, input().split())
quotient = dividend // divisor
remainder = dividend % divisor
print(quotient, remainder)
by Mr_Tianyu @ 2023-06-27 22:39:56