Run ID:91294
提交时间:2024-09-21 15:16:31
#include <bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>=b) cout<<a; else cout<<b; }