#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); // (x-r, x+r) int N; cin >> N; int BASE = 2e5; vector sum(BASE + BASE + 1, 0); rep(i,N) { int x,r; cin >> x >> r; sum[x - r + BASE]++, sum[x + r + BASE]--; } rep(i,BASE+BASE) sum[i + 1] += sum[i]; cout << *max_element(sum.begin(), sum.end()) << endl; }