• + 0 comments

    PyPy 3

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