Run ID:5357
提交时间:2024-11-10 10:02:00
#include<iostream> // cin\cout\endl using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if(c-a>d-b){ cout<<c<<endl; } else{ cout<<d<<endl; } return 0; }