From 763af28c36d4f0a800a9d94827029a48305decfd Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Sun, 14 Feb 2021 19:20:07 -0500 Subject: [PATCH] Solve 6.12 LAB --- 6/6.12 LAB/main.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 6/6.12 LAB/main.py diff --git a/6/6.12 LAB/main.py b/6/6.12 LAB/main.py new file mode 100644 index 0000000..5325c40 --- /dev/null +++ b/6/6.12 LAB/main.py @@ -0,0 +1,2 @@ +user_input = input().split() +print(int(sum(map(int, user_input)) / len(user_input)), max(map(int, user_input)))