Python: Division

Author: Al-mamun Sarkar Date: 2020-03-23 15:01:02

Python: Division Problem Solution of HackerRank

Code:

if __name__ == '__main__':
    a = int(input())
    b = int(input())
    print(int(a / b))
    print(a / b)

Test Input:

4
3

Test Output:

1
1.33333333333