From 1397f59f9ce402734ae9394c67474cdceb366e0c Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Thu, 22 Jun 2023 22:53:11 +0200 Subject: [PATCH] Sort Two Numbers --- sorttwonumbers.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sorttwonumbers.py diff --git a/sorttwonumbers.py b/sorttwonumbers.py new file mode 100644 index 0000000..bc9b5db --- /dev/null +++ b/sorttwonumbers.py @@ -0,0 +1,2 @@ +a, b = map(int, input().split()) +print(min((a,b)), max((a,b)))