Files
kattis/sorttwonumbers.py
2023-06-22 22:53:11 +02:00

3 lines
63 B
Python

a, b = map(int, input().split())
print(min((a,b)), max((a,b)))