You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
331 B

#include <bits/stdc++.h>
using namespace std;
int main() {
string s1, s2;
getline(cin, s1);
getline(cin, s2);
//查找子串位置
if (s2.find(s1) != s2.npos) {
cout << s1 << " is substring of " << s2 << endl;
} else {
cout << "No substring" << endl;
}
return 0;
}