Run ID:133351
提交时间:2025-10-18 15:15:21
#include<bits/stdc++.h> using namespace std; int main(){ int x1,y1,x2,y2,a,b; cin>>x1>>y1>>x2>>y2; a = abs(x1-x2); b = abs(y1-y2); if(a>b){ cout<<x; } else{ cout<<b; } return 0; }