#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; set st; for(int i = 0; i < n; i++) { int x, y; cin >> x >> y; if(y - x >= 0) { st.insert(y - x); } } if(st.size() != 1) { cout << -1 << endl; } else { cout << *st.begin() << endl; } return 0; }