#include #include #include #include #include #include #include #include #include #include #include #include #include #include #define INF 1000000000 #define rep(i,a,b) for (int i=(a);i<(b);i++) #define rev(i,a,b) for (int i=(a)-1;i>=b;i--) using namespace std; typedef long long ll; typedef pair pii; typedef queue qi; typedef queue< pair > qpii; typedef vector vi; typedef vector vii; typedef vector vs; typedef vector< pair > vpii; int dx[4] = { 0, 1, 0, -1 }; int dy[4] = { 1, 0, -1, 0 }; int main(){ cin.tie(0); ios::sync_with_stdio(false); int aw, ab, bw, bb, c, d; cin >> aw >> ab >> bw >> bb >> c >> d; ab -= c; bb += c; if(ab < 0) { int tmp = abs(ab); aw -= tmp; bw += tmp; ab += tmp; bb -= tmp; } bw -= d; aw += d; if(bw < 0) { int tmp = abs(bw); bb -= tmp; ab += tmp; bw += tmp; aw -= tmp; } cout << aw << endl; return 0; }