import math n=int(input()) tmp=(math.sqrt(1+8*n)-1)/2 if int(tmp)==tmp: print('YES') print(int(tmp)) else: print('NO')