#include <stdio.h>

int main()
{
	int i=0;
	char str1[]="There is no royal road to learning.";
	char str2[80];

	while(str2[i])
	{
		str2[i]=str1[i];
		i++;
	}

	printf("º¹»çµÈ ¹®ÀÚ¿­ : %s\n",str2);

	return 0;
}