int main()
{
	int n;
	scanf("%d", &n);
	if (n==0)
		printf("0");
	while (n>0)
	{
		printf("%d", n%10);
		n/=10;
	}

	return 0;
}
