Result Size:
625 x 571
demo_ref_divmod.py:
x = divmod(5, 2) print(x)
x
x
=
divmod
(
5
,
2
)
print
(
x
)
C:\Users\My Name>python demo_divmod.py
(2, 1)