Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98772 华雅萱 08比较大小 C++ Wrong Answer 0 MS 276 KB 183 2024-11-23 14:26:23

Tests(0/10):


Code:

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


Run Info:

------Input------
53 26
------Answer-----
53
------Your output-----
26