孔声豪 • 20天前
#include<bits/stdc++.h>
using namespace std;
int main(){
int f,n;
cin>>f>>n;
if(f>n){
cout<<f<<endl;
}
else {
cout<<n<<endl;
return 0;
评论: