Run ID:128187

提交时间:2025-08-09 09:31:27

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