#include <stdio.h> int main() { int a,b=0; scanf("%d",&a); while(a) { b=(a%10)*10+b*10; a/=10; }printf("%.4d",b/10); return 0; }