提交时间:2025-07-07 17:35:26
运行 ID: 12172
#include<bits/stdc++.h> using namespace std; int q(int x,int y){ if(x>y) return x; else if(y>x) return y; } int main(){ int a,b; cin>>a>>b; cout<<q(a,b); return 0; }