Run ID:155990

提交时间:2026-06-18 22:32:39

#include<bits/stdc++.h> using namespace std; int main(){ string w; getline(cin,w); int n=w.size(); for(int i=n;i>=0;i--){ cout<<w[i]; } return 0; }