| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 50463 | Songgr | 字符串 | C++ | Accepted | 0 MS | 248 KB | 159 | 2024-08-25 13:26:00 |
#include<bits/stdc++.h> using namespace std; string s; int main() { getline(cin,s); for(int i=s.size()-1;i>=0;i--) cout<<s[i]; return 0; }