Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
34522 吴斌斌 比较大小 C++ Accepted 5 MS 736 KB 202 2022-08-03 08:40:12

Tests(1/1):


Code:

#include <iostream> #include <cstring> using namespace std; int main() { int a,b; cin>>a>>b; if(a<b) { cout<<b<<" "<<a<<endl; } else{ cout<<a<<" "<<b<<endl; } return 0; }