#include <iostream> using namespace std; //反转数字 int main(){ int a,b=0; cin>>a; while(a!=0){ b = b*10+a%10; a = a/10; } cout<<b; return 0; }