题目描述
blablabla
C++ 代码
#include <iostream>
using namespace std;
int main() {
string str1, str2, t1, t2;
cin >> str1 >> str2;
t1 = str1 + str1;
t2 = str2 + str2;
if(t1.find(str2) != -1 || t2.find(str1) != -1) {
cout << "true";
} else {
cout << "false";
}
}