Run ID:119535
提交时间:2025-05-17 18:03:01
#include<iostream> using namespace std; int main(){ int a,b,y; cin>>a>>b; if(a>b){ y=a; a=b; b=y; cout<<a<<endl<<b; }else{ cout<<a<<endl<<b; } }