djfz-2019/TaskA00/run
deadsmond 3fc55229d6 hm
2019-11-01 17:09:37 +01:00

16 lines
276 B
Python

#!/usr/bin/python3
import sys
import re
def is_number(test):
pattern = re.compile(r'^\-?(([1-9][0-9]*[05])|(0))$')
result = re.match(pattern, test)
if result:
return "yes"
else:
return "no"
for line in sys.stdin:
print(is_number(line))