This commit is contained in:
s444379 2020-11-22 13:30:55 +01:00
parent 14af94591c
commit d261fd57d5
2 changed files with 10 additions and 0 deletions

0
TaskB03/Makefile Normal file
View File

10
TaskB03/run Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/python3
import sys
import re
for line in sys.stdin:
if not re.search(r'19\d{2} r\.',line) == None:
print(line, end='')
else: pass