Python Division - Hacker Rank Solution

Python: Division - Hacker Rank Solution

Problem Statement :

The provided code stub reads 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:

        The result of the integer division is 3//5=0.

        The result of the float division is 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.

Task :

Read two integers and print two lines. The first line should contain integer division, a//b. The second line should contain float division, a/b.

You don't need to perform any rounding or formatting operations.


Solution:

  if __name__ == '__main__':
    a = int(input())
    b = int(input())
    c=a//b
    d=a/b
    print("%d\n%f"%(c,d))         




Disclaimer:-

The above hole problem statement is given by hackerrank.com but the solution is generated by the Hackerranksolution.site authority if any of the queries regarding this post or website fill the following contact form thank you.
Next Post Previous Post
No Comment
Add Comment
comment url