#include<bits/stdc++.h>
using namespace std;
string s; 
int k;
int a[1005],b[1005],c[1005]; //a,b高精数组 c结果 
//----------------------------------------------------------------------------------------------------------
const int SIZE=sizeof(a);
void get(string s,int a[]){  //输入 
	a[0]=s.length();
	for(int i=1;i<=a[0];i++)
	    a[i]=s[a[0]-i]-'0';
}
void p(int a[]){    //输出 
	for(int i=a[0];i>=1;i--)
	    printf("%d",a[i]);
}
bool cmp(int a[],int b[]){   //高精度<高精度 
	if(a[0]!=b[0]) return a[0]<b[0];
	for(int i=a[0];i>=1;i--){
		if(a[i]!=b[i]) return a[i]<b[i];
	}
	return false;
}
void ad(int a[],int b[],int c[]){   //高精度加法 
	memset(c,0,SIZE);
	c[0]=max(a[0],b[0]);
	for(int i=1;i<=c[0];i++){
		c[i]=c[i]+a[i]+b[i];
		c[i+1]+=c[i]/10;
		c[i]%=10;
	}
	if(c[c[0]+1]!=0) c[0]++;
}
void mi(int a[],int b[],int c[]){   //高精度减法 
	memset(c,0,SIZE);
	c[0]=a[0];
	for(int i=1;i<=a[0];i++){
		c[i]=c[i]+a[i]-b[i]+10;
		c[i+1]=c[i]/10-1;
		c[i]%=10;
	}
	while(c[0]>1&&c[c[0]]==0) c[0]--;
}
void mul1(int a[],int k,int c[]){   //高精度x单精度 
	memset(c,0,SIZE);
	c[0]=a[0];
	for(int i=1;i<=c[0];i++){
		c[i]=c[i]+a[i]*k;
		c[i+1]=c[i]/10;
		c[i]%=10;
	}
	while(c[c[0]+1]!=0){
		c[0]++;
		c[c[0]+1]=c[c[0]]/10;
		c[c[0]]%=10;
	}
}
void mul(int a[],int b[],int c[]){   //高精度乘法 
	memset(c,0,SIZE);
	c[0]=a[0]+b[0]-1;
	for(int i=1;i<=a[0];i++)
		for(int j=1;j<=b[0];j++)
		    c[i+j-1]+=a[i]*b[j];
	for(int i=1;i<=c[0];i++){
		c[i+1]+=c[i]/10;
		c[i]%=10;
	}
	while(c[0]>1&&c[c[0]]==0) c[0]--;
} 
void div(int a[],long long k,int c[]){   //高精度除以单精度 
	memset(c,0,SIZE);
	long long re=0;
	for(int i=a[0];i>=1;i--){
		re=re*10+a[i];
		c[i]=re/k;
		re%=k;
		if(c[0]==0&&c[i]!=0) c[0]=i;
	}
}
//----------------------------------------------------------------------------------------------------------
int main(){
	cin>>s;
	get(s,a);
    return 0;
}