提交时间:2026-01-04 15:20:21

运行 ID: 80524

#include <bits/stdc++.h> using namespace std; int main( ) { int a,b,c,d,e,f; cin>>a>>b>>c>>d>>e>>f; if(a>b) cout<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f<<" "<<a; else cout<<a<<" "<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f; return 0; }