Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153775 王丞杰 比较大小 C++ Accepted 0 MS 268 KB 174 2026-05-23 18:40:53

Tests(1/1):


Code:

#include<bits/stdc++.h> #define ll long long using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<a<<" "<<b; } else{ cout<<b<<" "<<a; } }