Run ID:118919
提交时间:2025-05-10 19:06:17
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<a; } else{ cout<<b; } }