diff --git a/TaskC32/Makefile b/TaskC32/Makefile new file mode 100644 index 0000000..e69de29 diff --git a/TaskC32/run b/TaskC32/run new file mode 100644 index 0000000..77b90f0 --- /dev/null +++ b/TaskC32/run @@ -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")