#362: 疑惑中 請大家給予我幫助@@


a222242 (無)


#include<iostream>
using namespace std;
int main()
{
    int a;
    string b;
    while(cin>>b)
    {
    string c("");
       for(a=b.length()-1;a>=0;a--)
       {
          c.append(b,a,1);
       }
       cout<<c<<endl;
    }
    system("pause");
    return 0;
}