Контрольные задания > The Python code takes two integer inputs, `x` and `y`. It prints "YES" if `x` is greater than 11 or `y` is greater than 11, and "NO" otherwise. Given the following test cases: (1, 2), (-10, -11), (12, 2), (1, 13), (-10, 11), (-11, 12), (11, 11). How many times will the program output "YES"?
Вопрос:
The Python code takes two integer inputs, `x` and `y`. It prints "YES" if `x` is greater than 11 or `y` is greater than 11, and "NO" otherwise. Given the following test cases: (1, 2), (-10, -11), (12, 2), (1, 13), (-10, 11), (-11, 12), (11, 11). How many times will the program output "YES"?