16 lines
276 B
Python
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))
|