Skip to content

Commit 841ae07

Browse files
committed
Solutions to Python Math section
1 parent ee059a3 commit 841ae07

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Python/Math/Mod Divmod/Solution.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
d = divmod(int(input()), int(input()))
2+
print(*d, d, sep='\n')

0 commit comments

Comments
 (0)