Solve 6.13 LAB

This commit is contained in:
Joe S
2021-02-14 19:30:56 -05:00
parent 763af28c36
commit b434e7f74f

3
6/6.13 LAB/main.py Normal file
View File

@@ -0,0 +1,3 @@
user_input = input().split()
print(*sorted([i for i in list(map(int, user_input)) if i >= 0]), '', end='')