#include using namespace std; int main(){ int a,b,c,d; cin >> a >> b >> c >> d; cout << (b-a+1)*(d-c+1) - max(0,min(b,d)-max(a,c)+1) << endl; }