Advertisement
nq1s788

6

Apr 26th, 2024
751
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. a = ((9, 9), (9, 10), (8, 5), (11, 6), (-11, 10), (-5, 9), (-10, 10), (4, 5), (8, 6))
  2. for e in a:
  3.     s = e[0]
  4.     t = e[1]
  5.     if s < 9 or t < 9:
  6.         print("YES")
  7.     else:
  8.         print("NO")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement