//{{{
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(...) repN((__VA_ARGS__,rep3,rep2,loop,~))(__VA_ARGS__)
#define loop(n) rep2(_loop_,n)
#define rep2(i,n) rep3(i,0,n)
#define rep3(i,begin,end) for(int i=(int)(begin),i##_end=(int)(end);i<i##_end;++i)
#define repN(a) repX a
#define repX(a0,a1,a2,x,...) x
const int MOD = 1e9+7;
//}}}

int main(){
	int N;
	cin >> N;
	int x, y;
	cin >> x >> y;
	int ans = y - x;
	if(ans <= 0){
		puts("-1");
		return 0;
	}
	rep(i, N - 1){
		cin >> x >> y;
		if(ans == y - x) continue;
		puts("-1");
		return 0;
	}
	printf("%d\n", ans);
	return 0;
}