Python: Division ⬀
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.
a = 3b = 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
The first line contains the first integer, a.
The second line contains the second integer, b.
Print the two lines as described above.
4
3
1
1.33333333333