Answer:
inputed = input("Choose some numbers, each separated with a space: ")
chosen = list(inputed)
chosen = chosen.remove(' ')
for value in chosen:
if '-' not in value:
print(Body)
else:
print(Done)
break
Step-by-step explanation:
The for loop will go through every value in the list (your numbers) and check if it is positive or negative.