Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
3948 刘芃伽 08比较三个数大小II C++ Wrong Answer 0 MS 264 KB 159 2024-07-20 23:44:06

Tests(0/10):


Code:

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


Run Info:

------Input------
97 95 4
------Answer-----
4
------Your output-----
95