Run ID:96365
提交时间:2024-11-07 15:11:30
#include <bits/stdc++.h> using namespace std; int main() { char a[100],b[100]; cin>>a>>b; if(strstr(a,b)==NULL){ cout<<"no"; } else cout<<"yes"; return 0; }