hm
This commit is contained in:
parent
9fc7b370c5
commit
f889d5ce47
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import sys
|
||||
import re
|
||||
|
||||
def is_number(test):
|
||||
@ -11,7 +11,5 @@ def is_number(test):
|
||||
else:
|
||||
return "no"
|
||||
|
||||
x = input()
|
||||
while x:
|
||||
print(is_number(x))
|
||||
x = input()
|
||||
for line in sys.stdin:
|
||||
print(is_number(line))
|
||||
|
@ -30,7 +30,5 @@ def is_number(text):
|
||||
else:
|
||||
return "no"
|
||||
|
||||
x = input()
|
||||
while x:
|
||||
print(is_number(x))
|
||||
x = input()
|
||||
for line in sys.stdin:
|
||||
print(is_number(line))
|
||||
|
@ -11,7 +11,5 @@ def is_number(test):
|
||||
else:
|
||||
return "no"
|
||||
|
||||
x = input()
|
||||
while x:
|
||||
print(is_number(x))
|
||||
x = input()
|
||||
for line in sys.stdin:
|
||||
print(is_number(line))
|
||||
|
@ -11,7 +11,5 @@ def is_number(test):
|
||||
else:
|
||||
return "no"
|
||||
|
||||
x = input()
|
||||
while x:
|
||||
print(is_number(x))
|
||||
x = input()
|
||||
for line in sys.stdin:
|
||||
print(is_number(line))
|
||||
|
Loading…
Reference in New Issue
Block a user