18 lines
264 B
Python
18 lines
264 B
Python
#!/usr/bin/python3
|
|
|
|
import re
|
|
|
|
def is_number(test):
|
|
pattern = re.compile(r'^\-?\d*[05]$')
|
|
|
|
result = re.match(pattern, test)
|
|
if result:
|
|
return "yes"
|
|
else:
|
|
return "no"
|
|
|
|
x = input()
|
|
while x:
|
|
print(is_number(x))
|
|
x = input()
|