1:
#include <bits/stdc++.h>
using namespace std;
string st;
int d,i;
int main()
{
getline(cin,st);
d=st.length();
for (i=d-1; i>=0; i--) cout<<st[i];
return 0;
}
Đúng 1
Bình luận (0)