提交时间:2025-03-26 17:05:38

运行 ID: 314583

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