#include using namespace std; int main() { char str[256]; memset(str, 0, sizeof(str)); fgets(str, sizeof(str), stdin); bool ok = true; int i = 0; while(str[i] != '\0' && str[i] != '\n') { if (((i&1) && str[i] != ' ') || (!(i&1) && !islower(str[i]))) { ok = false; cout << i << endl; break; } i++; } if (ok) { puts("Yes"); } else { puts("No"); } return 0; }