s=input().rstrip() for i in len(s): if i%2==0 and s[i]==' ': print("No") elif i%2==1 and s[i]!=' ': print("No")