#include <iostream>
using namespace std;
int main()
{
string a,b;
cin >> a >> b;
if (a.size() < b.size()) swap(a, b);
for (int i = 0 ; i < a.size();i++)
{
if (b[0] == a[i])
{
int tmp = 0;
for (int j = 0 ; j < b.size() ; j++)
{
if (a[(i+j)%a.size()] == b[j]) tmp ++;
}
if (tmp == b.size())
{
puts("true");
return 0;
}
}
}
puts ("false");
return 0;
}