You are viewing a single comment's thread. Return to all 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)
Seems like cookies are disabled on this browser, please enable them to open this website
Exceptions
You are viewing a single comment's thread. Return to all comments →
Here's my code: