#include <stdio.h> int main() { int n,i; scanf("%d",&n); for(i=10;n>0;) { printf("%d",n%i); n/=10; } return 0; }