n=int(input()) a=[] for _ in range(n): x,r=map(int,input().split()) a.append((x-r,1)) a.append((x+r,-1)) a.sort() i=0 ans=0 cur=0 while i