Sort Two Numbers

This commit is contained in:
2023-06-22 22:53:11 +02:00
parent 7cd7b069bc
commit 1397f59f9c

2
sorttwonumbers.py Normal file
View File

@@ -0,0 +1,2 @@
a, b = map(int, input().split())
print(min((a,b)), max((a,b)))