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