This commit is contained in:
s444379 2020-11-22 16:07:52 +01:00
parent 585b42560b
commit a87608dd89
2 changed files with 10 additions and 0 deletions

0
TaskC09/Makefile Normal file
View File

10
TaskC09/run Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/python3
import sys
import re
for line in sys.stdin:
if re.findall(r'[A-Z][0-9][0-9]',line):
print("yes")
else: print("no")