Table of Contents
ToggleQuestion
Task
The provided code stub reads two integers, and , from STDIN.
Add logic to print two lines. The first line should contain the result of integer division, // . The second line should contain the result 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 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
Solution
a = int(input())
b = int(input())
print(a//b)
print(a/b)
The code reads two integers, a
and b
, from the standard input using input()
and int()
functions. It then performs the following operations:
- Prints the result of integer division between
a
andb
using the//
operator. - Prints the result of float division between
a
andb
using the/
operator.
.
If you find anything wrong in this Solution, feel free to reach us in the comment section.