From 301f8f5299c23789342fc249a6909a209fc1c046 Mon Sep 17 00:00:00 2001 From: Ivan Tikhomirov <54577016+Neumark1982@users.noreply.github.com> Date: Sat, 29 Oct 2022 00:30:45 +0300 Subject: [PATCH] Update 05_hw.md --- Module2/home_work/05_hw.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Module2/home_work/05_hw.md b/Module2/home_work/05_hw.md index 4190ba3..4b6aed6 100644 --- a/Module2/home_work/05_hw.md +++ b/Module2/home_work/05_hw.md @@ -27,7 +27,16 @@ a = int(input("a: ")) b = int(input("b: ")) c = int(input("c: ")) -# TODO: you code here... +if a > b: + a, b = b, a +if a > c: + a, c = c, a + +if b > c: + b, c = c, b + + +print(a, b, c) print(a, b, c) ```