#include#includeint main(){char s1[200],s2[200]; gets(s1); gets(s2); if(strstr(s1,s2))printf("yes\n"); else printf("no\n"); return 0;}