You are viewing a single comment's thread. Return to all comments →
num_test_cases = int(input()) for _ in range(num_test_cases): try: a, b = map(int, input().split()) result = a // b print(result) except Exception as error: print(f"Error Code: {error}")
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 →