I believe the answer is bloody purple poop that is the size of an extra large grilled cheese
The NETP provides actionable recommendations to implement
technology and conduct research and development successfully that can advance
the effective use of technology to support learning and teaching.
Hope this helps :)
Answer:
ansList =input().split() #get input and split it by space
ansList = [int(i) for i in ansList if int(i)>0] #turn string to integer,and get all positive integers
print(ansList)
Explanation: I think this would work for you. I leace comments in the answer.