This commit is contained in:
Zofia Bączyk 2020-11-22 16:27:55 +01:00
parent 619de96228
commit 8c98bdd24c
2 changed files with 9 additions and 0 deletions

0
TaskC32/Makefile Normal file
View File

9
TaskC32/run Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/python3
import sys
import re
for line in sys.stdin:
if re.match(r'^(\$[1-9]+[0-9]*)$',line):
print("yes")
else: print("no")