Run ID:105278
提交时间:2025-01-12 21:30:48
#include <iostream> using namespace std; int main(){ int a,b; int c,d; int delx = a-c; int dely = b-d; if delx<0: delx = -delx; if dely<0: dely = -dely; if delx>dely: cout<<delx; else cout<< dely; return 0; }