Run ID:147423
提交时间:2026-02-04 22:45:37
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; int s = abs(a-c); int w = abs(b-d); if(s>w){ cout<<s; }else{ cout<<w; } return 0; }