• + 0 comments

    if name == 'main': a = int(input()) b = int(input())

    divided result of integer division

    print(a//b)

    divided result of float division

    print(a/b)