Run ID:3475
提交时间:2024-06-08 17:28:29
#include<iostream> using namespace std; string s1,s2; void fun2(){ int t=s1.find(s2); if(t<s1.size()) cout<<"yes"<<endl; else cout<<"no"<<endl; } int main(){ getline(cin,s1); getline(cin,s2); fun2(); return 0; }