p,q,r = map(int,input().split(' ')) if (p + r) / 2 == q: print('Yes') else: print('No')