#include <iostream>
int main() {
std::string s = "c c++ javascript python c# php";
std::string abc = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890_ ";
if (s.find_first_not_of(abc) != std::string::npos) {
std::cout << "yes";
} else {
std::cout << "no";
}
return 0;
}
/*
run:
yes
*/