• + 0 comments

    a = int(input()) b = int(input())

    Print the result of integer division

    print(a // b)

    Print the result of float division

    print(a / b)