Python HackerRank Division Solution

a=float(input())
b=float(input())
bom=a//b
print(bom)
print(a/b)

Comments