#include<iostream> using namespace std; int main() { char s[51]; int i; cin>>s; for(i=strlen(s)-1;i>=0;i--) cout<<s+i<<endl; return 0; }