Run ID:87626
提交时间:2024-08-10 21:40:39
#include<bits/stdc++.h> using namespace std; int main() { int a,b,max; cin>>a>>b; if(a>b) max=a; else max=b; cout<<max; return 0; }