HackerRank Python Solution - Math Topic - Mod Divmod

One of the built-in functions of Python is divmod, which takes two arguments a and b, and returns a tuple containing the quotient of a/b first and then the remainder a.

For example:
 
>>> print divmod(177,10)
(17, 7)
Here, the integer division is 177/10 => 17 and the modulo operator is 177%10 => 7.

Task:
  • Read in two integers, a and b, 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.
Input Format:
  • The first line contains the first integer, a, and the second line contains the second integer, b.
Output Format:
  • Print the result as described above.
Sample Input:

177
10
Sample Output:

17
7
(17, 7)
Solution:

a=int(input())

b=int(input())

print(a//b,a%b,divmod(a,b),sep='\n')
Disclaimer: The problem statement is given by hackerrank.com but the solution is generated by the Geek4Tutorial admin. If there is any concern regarding this post or website, please contact us using the contact form. Thank you!

No comments:

Post a Comment

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...