| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46333 | C++|刘一阳 | 字符串 | C++ | Accepted | 0 MS | 248 KB | 158 | 2024-05-03 10:09:51 |
#include<bits/stdc++.h> using namespace std; int main() { string a; getline(cin,a); for(int i=a.size()-1;i>=0;i--){ cout<<a[i]; } return 0; }