#include <bits/stdc++.h> using namespace std; int main(){ int n,a,s; cin>>n; while(n){ cout<<n%10; n/=10; } return 0; }
超时求调