Python: Division Hackerrank solution

Admin

Python: Division Hackerrank solution

 Task

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,a/b. of float division,  / .

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 is 3/5 = 0.6.

Print:

0
0.6

Input Format

The first line contains the first integer, .

The second line contains the second integer, .

Output Format

Print the two lines as described above.

Sample Input 0

4
3

Sample Output 0

1
1.33333333333


Solution

from __future__ import division
if __name__ == '__main__':
    a = int(raw_input())
    b = int(raw_input()) 
    print(a//b);
    print(a/b);

Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.