20分,样例二没过。
#include<bits/stdc++.h> using namespace std; signed main(){ string s;cin>>s; reverse(s.begin(),s.end()); cout<<s<<endl; }