提交时间:2025-11-07 17:53:10
运行 ID: 73179
#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; }