Untitled
test_cases = int(input()) for _ in range(test_cases): student_answer = int(input()) correct_answer = int (input()) if student_answer == 1 == correct_answer: print ("YES" ) else student_answer != 1 != correct_answer: print ("NO")
Leave a Comment