#include #include int main(){ long long int N; scanf("%lld", &N); if(N==0){ printf("0\n"); }else{ printf("%lld0\n", N); } return 0; }