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, // . The second Line should contain the result of float division, / .
No rounding or formatting is necessary.
Example:
- The result of the integer division .
- The result of the float division is .
Print:::00.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
43
Sample Output: 0
1
1.33333333333
Solution Division : Python 2from __future__ import division
if __name__ == '__main__': a = int(raw_input()) b = float(raw_input()) print(a // b) print(a / b)
Solution Division : Python 3a = int(input("Enter"))
b = float(input("Ent2"))
print(a // b)
print(a / b)