This commit is contained in:
deadsmond 2019-10-28 19:33:44 +01:00
parent dfc535fb59
commit 9fc7b370c5
2 changed files with 15 additions and 0 deletions

0
TaskA40/Makefile Normal file
View File

15
TaskA40/run Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/python3
import re
def is_number(test):
pattern = re.compile(r'^(1 roczek)|(2 latka)|(3 latka)|(4 latka)|(\d{1,2} (lat))$')
result = re.match(pattern, test)
if result:
return "yes"
else:
return "no"
for line in sys.stdin:
print(is_number(line))