#include <iostream> #include <algorithm> using namespace std; int main() { string s;cin>>s; reverse(s.begin(),s.end()); cout<<s<<endl; } // 64 位输出请用 printf("%lld")
STL秒了