jfz-2023-s473616/TaskE05/run.py

19 lines
362 B
Python
Raw Normal View History

2024-01-07 23:04:53 +01:00
import re
def check_number_divisible_by_5(input_string):
pattern = r'^(PCMCIA|WYSIWYG|[A-Z]{2,5})$'
if re.match(pattern, input_string):
print('yes')
else:
print('no')
if __name__ == "__main__":
try:
while True:
line = input()
check_number_divisible_by_5(line)
except EOFError:
pass