djfz-2019/TaskA00/run
deadsmond 1969cd24c5 hm
2019-10-28 20:10:31 +01:00

16 lines
263 B
Python

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