Run ID:147274

提交时间:2026-02-03 18:48:55

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if(a+b<c+d){ (c+d)-(a+b); } else{ (a+b)-(c+d); } return 0; }