HackerRank Python - Mod Divmod
Read in two integers, a andb , and print three lines.
The first line is the integer division a//b (While using Python2 remember to import division from __future__).
The second line is the result of the modulo operator: a%b.
The third line prints the divmod of a and b.
- # Enter your code here. Read input from STDIN. Print output to STDOUT
-
- d = divmod(int(input()), int(input()))
- print(*d, d, sep='\n')