#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); string s; bool is_u_s_h_i_t_a_p_u_n_i_c_h_i_a_k_u_n = true; while (cin >> s) { if (s.size() > 1) is_u_s_h_i_t_a_p_u_n_i_c_h_i_a_k_u_n = false; } cout << (is_u_s_h_i_t_a_p_u_n_i_c_h_i_a_k_u_n ? "Yes" : "No"); return 0; }