Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116540 | 白碣琨 | 07a+b>c | C++ | Wrong Answer | 1 MS | 280 KB | 133 | 2025-04-12 11:28:46 |
#include<bits/stdc++.h> using namespace std; int main(){ int a , b; cin>>a>>b; if((a>b)?a:b){ cout<<a; } return 0; }
------Input------
70 480 94
------Answer-----
Yes
------Your output-----
70