Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153774 王丞杰 比较大小 C++ Wrong Answer 1 MS 268 KB 158 2026-05-23 18:40:15

Tests(0/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; } else{ cout<<b; } }


Run Info:

------Input------
2563 20323
------Answer-----
20323 2563
------Your output-----
20323