View Code of Problem 52

#include <iostream>

#include <string>

#include <algorithm>

using namespace std;int main()

{ string str; 

cin>>str;  

reverse(str.begin(), str.end()); 
cout<<str<<endl; return 0;

}


Double click to view unformatted code.


Back to problem 52