27_11_commit

This commit is contained in:
BohdanBakhlul 2019-11-27 17:36:29 +01:00
parent 348d53bbe9
commit 3b6370cae9
2 changed files with 8 additions and 0 deletions

0
TaskE04/Makefile Normal file
View File

8
TaskE04/run Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/python3
import sys, re
for line in sys.stdin:
if (re.search(r'(^(0[0-9]|1[0-9]|2[0-3]|[0-9]):[0-5][0-9]$)', line)):
print((line.split(':', 1)[1]).rstrip('\n'))
else:
print('<NONE>')