m=n=int(input());cnt=0;i=2 while m>=i*i: while n%i==0:n//=i;cnt+=1 i+=1 cnt+=n>1;print(['NO','YES'][cnt>2])