" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
using namespace std;
string x;
int main()
{
cin >> x;
int d=x.length();
for (int i=d-1; i>=0; i--)
{
cout<<x[i];
}
return 0;
}