提交时间:2024-04-24 19:07:29
运行 ID: 46086
#include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y){ cout<<x; } else{ cout<<y; } }