aboutsummaryrefslogtreecommitdiff
path: root/codeforces/Yes-Yes/main.py
blob: 15928984c62f1e9c4e587738a1f48630f29c6a1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
tt = int(input())
for _ in range(tt):
    s = input()
    new_s = "Yes" * 20
    if s in new_s:
        print("YES")
    else:
        print("NO")