#include<stdio.h>
#include<string.h>
int main()
{
    char source[]= "A thousand journey is started by taking the first step.",destination[100];
    strcpy(destination,source);
    puts(destination);
    return 0;
}