djfz-2023-s464933/TaskE42/run.py

9 lines
201 B
Python
Raw Permalink Normal View History

2023-12-28 12:43:08 +01:00
import sys
import re
for line in sys.stdin:
2024-01-03 19:19:38 +01:00
str = re.match(r'^N(IE|O).*[EO]{5,}.*!!!.*', line.replace("\n", ""), flags=re.IGNORECASE)
2023-12-28 12:43:08 +01:00
if str:
print('yes')
else:
print("no")