#include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
char c;
while(cin>>s)
{
cout<<s<<endl;
for(int i=1;i<s.length();i++)
{
c=s[0];
swap(s[0],s[1]);
for(int j=1;j<s.length()-1;j++) swap(s[j],s[j+1 ]);
cout<<s<<endl;
}
}
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
char c;
while(cin>>s)
{
cout<<s<<endl;
for(int i=1;i<s.length();i++)
{
c=s[0];
swap(s[0],s[1]);
for(int j=1;j<s.length()-1;j++) swap(s[j],s[j+1 ]);
cout<<s<<endl;
}
}
}
ps.執行只需7ms