#include #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; typedef long long ll; int main(){ string s; getline(cin,s); int n=s.size(); rep(i,n){ if(i%2==1){ if(s[i]!=' '){ cout << "No" << endl; return 0; } } else { if(s[i]==' '){ cout << "No" << endl; return 0; } } } cout << "Yes" << endl; }