This commit is contained in:
s444379 2020-11-22 13:33:39 +01:00
parent d261fd57d5
commit b8c0224f9b
2 changed files with 10 additions and 0 deletions

0
TaskB04/Makefile Normal file
View File

10
TaskB04/run Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/python3
import sys
import re
for line in sys.stdin:
sub = re.findall(r'\d+',line)
if len(sub) > 0:
print(' '.join(sub))