st=input() flg=0 for i in range(0,len(st)-1,2): if st[i]==" ": flg=1 break if st[i+1]!=" ": flg=1 break if flg==1: print("No") else: print("Yes")