#29611: C++解題


qwe941118@gmail.com (105-20蕭英志)


#include <iostream>

#include <string> 

#include <sstream>

using namespace std;

int main()

{

string x;

while (cin >> x)

{

string y;

for (int i = x.length()-1; i >= 0; i--)

{

y = y + x[i];

}

while (y[0] == '0' && y.length()>1)

{

y.erase(0, 1);

}

cout << y << endl;

}

}