From b434e7f74fcc3ea850202c56f5d242a2f7099621 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Sun, 14 Feb 2021 19:30:56 -0500 Subject: [PATCH] Solve 6.13 LAB --- 6/6.13 LAB/main.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 6/6.13 LAB/main.py diff --git a/6/6.13 LAB/main.py b/6/6.13 LAB/main.py new file mode 100644 index 0000000..86728d7 --- /dev/null +++ b/6/6.13 LAB/main.py @@ -0,0 +1,3 @@ +user_input = input().split() + +print(*sorted([i for i in list(map(int, user_input)) if i >= 0]), '', end='')