//{{{ #include 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> 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; }