n=input() a=n.count("1") b=n.count("0") if(a==1 or b==1): print("YES",end="") else: print("NO",end="")