Run ID:129041
提交时间:2025-08-21 16:15:38
#include<bits/stdc++.h> using namespace std; int main(){ string a,b; getline(cin,a); getline(cin,b); if(a.find(b)<a.size()) { cout<<"yes"; } else{ cout<<"no"; } return 0; }