S = input() answer = 'yes' for i in range(len(S)): if i % 2 == 0 and S[i] == ' ': answer = 'no' print(answer)