• + 1 comment
    a = int(input())
    b = int(input())
    if b != 0:
        print(a//b) #or print(int(a/b))
        print(a/b)