#pragma GCC optimize("Ofast") #include using namespace std; #define REP(i,n) for(int i = 0; i < (int)(n); ++i) #define ALL(a) (a).begin(),(a).end() typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, A, B, s, t; cin >> N; s = 0; t = 0; REP(i,N-1){ cin >> A >> B; s += A; t += B; } int d = s-t; cout << 1+s-d << endl; return 0; }