Run ID:96011
提交时间:2024-11-02 17:15:53
#include <iostream> using namespace std; int main(){ // int a,b; // cin>>a>>b; // if(a>b){ // cout<<a; // } // else{ // cout<<b; // } // int a; // cin>>a; // if(a>0){ // cout<<"YES"; // } // else{ // cout<<"NO"; // } // int a,b,c; // cin>>a>>b>>c; // if(a+b>c){ // cout<<"Yes"; // } // else{ // cout<<"No"; // } // float n,t,s; // cin>>n>>t>>s; // int x; // // x = n-s/t; // float y; // y = n-s/t; // // if(x>y){ // x = x+1; // } // if(x<0){ // x=0; // } // // cout<<x; int a,b; cin>>a>>b; if(a>b){ cout<<b<<" "<<a; } else{ cout<<a<<" "<<b; } }