Run ID:91500
提交时间:2024-09-22 09:00:40
#include <bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b) cout<<a; else cout<<b; }