djfz-2019/TaskA00/run
deadsmond f889d5ce47 hm
2019-10-28 19:36:44 +01:00

16 lines
260 B
Python

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