Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
41897 陈栋 求两个数较大的数 C++ Accepted 2 MS 272 KB 165 2022-11-10 21:51:16

Tests(2/2):


Code:

#include<bits/stdc++.h> using namespace std; int s(int a,int b){ return max(a,b); } int main(){ long long a,b; cin>>a>>b; cout<<s(a,b); return 0; }