Run ID:109032

提交时间:2025-01-24 12:11:32

a,b,c = map(int,input().split()) if a>b: a,b= b,a if b>c: b,c= c,b print(a,b,c)