Run ID:119674

提交时间:2025-05-18 13:38:26

#include<bits/stdc++.h> using namespace std; int main(){ int t=-1; string a,b; cin>>a>>b; t = a.find(b); if(t!=-1){ cout<<"yes"<<endl; } else if(t==-1){ cout<<"no"<<endl; } return 0; }