This commit is contained in:
deadsmond 2019-10-28 20:42:05 +01:00
parent e19b2a63be
commit 77cccc32b8
1 changed files with 4 additions and 4 deletions

View File

@ -9,11 +9,11 @@ def is_number(test):
if result: if result:
test = test.split(' ') test = test.split(' ')
if(len(test[0])<2 or len(test[1])<2): if(len(test[0])<2 or len(test[1])<2):
return "<NONE>" return "<NONE>"
else: else:
return test[1] return test[1]
else: else:
return "<NONE>" return "<NONE>"
for line in sys.stdin: for line in sys.stdin:
print(is_number(line)) print(is_number(line))