Run ID:82923

提交时间:2024-07-13 16:38:00

#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; }