• + 0 comments

    Here's my code:

    for i in range(int(input())):
        try:
            a, b = map(int, input().split())
            print(a//b)
        except Exception as e:
            print("Error Code:", e)