// #define _GLIBCXX_DEBUG #include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) int main() { // Input string S; getline(cin, S); // Judge bool ok = true; rep(i, S.size()) { if (i % 2 == 0 && !('a' <= S[i] && S[i] <= 'z')) ok = false; if (i % 2 == 1 && S[i] != ' ') ok = false; } // Output cout << (ok ? "Yes" : "No") << endl; }