Python: Division - Hacker Rank Solution

What's up coders, today we are going to solve Python:Division Hacker Rank Solution.

What's up coders, today we are going to solve Python:Division Hacker Rank Solution.

Python: Division


👊 Table Of Contents

Task

The provided code stub read two integers, a and b, from STDIN.

Add logic to print two lines. The first line should contain the result of integer division, a // b. The second line should contain the result of float division, a / b.

No rounding or formatting is necessary.

Example

a = 3

b = 5

  • The result of the integer division 3 // 5 = 0.
  • The result of the float division 3 / 5 = 0.6. 

Print:

0
0.6

Input Format

The first line contains the first integer, a.

The second line contains the second integer, b.

Output Format

Print the two lines as described above.

Sample Input 0

4
3

Sample Output 0

1
1.33333333333

Python: Division Hacker Rank Solution

Python 3

#Python: Division - Hacker Rank Solution
a = int(input())
b = int(input())
print( a // b )
print( a / b )
Python Division Hacker Rank Solution
Python Division - Hacker Rank Solution

Disclaimer: The above problem is generated by Hackerrank but the solution is given by Sloth Coders. If you have any doubt regarding the problem( Python Division Hacker Rank Solution ), feel free to contact in the Comment section.

Happy Coding!!

A Sloth Who loves to code.

Also Read:

Sloth Coders is a Learning Platform for Coders, Programmers and Developers to learn from the basics to advance of Coding of different langauges(python, Java, Javascript and many more).

Post a Comment