co=0 n=int(input()) for i in range(2,int(n**0.5)+1): while n%i==0: co+=1 if co==3:break n/=i if co==3:break if co==3:print("YES") else:print("NO")