blob: a84d7e208e8166d95b30896aa2e87f6fa967387e (
plain)
1
2
3
4
5
6
7
8
9
10
|
import sys
num = []
num.append(int(input("number: ")))
num.append(int(input("number: ")))
num.append(int(input("number: ")))
num.sort()
for i in num:
sys.stdout.write(f"{i} ")
print("\n")
|