#include #include int main(){ char prop[101]; fgets(prop,101,stdin); char cuv[]="Yardi"; if(strstr(prop,cuv)!=NULL) printf("YES"); else printf("NO"); }