| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134005 | 李昱龙 | 08比较大小 | C++ | Wrong Answer | 1 MS | 272 KB | 181 | 2025-10-25 14:08:28 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b||b>a){ cout<<"小红"<<endl; } else{ cout<<"小明"<<endl; } return 0; }
------Input------
53 26
------Answer-----
53
------Your output-----
小红