| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135455 | 肖声晖 | 07比较大小 | C++ | Wrong Answer | 1 MS | 268 KB | 156 | 2025-11-03 17:24:36 | 
#include <iostream> using namespace std; int main(){ int a; int b; cin>>a; cin>>b; if(a<b){ cout<<"b"; } if(a>b){ cout<<"a"; } }
------Input------
7405 9836
------Answer-----
9836
------Your output-----
b