#include <stdio.h>

int main(void)

{

char me[20] = "나도 프로그램을 잘할 수 있다.";

char dr[20] = "꿈은 이루어진다.";

printf("%s\n%s\n",me,dr);

return 0;

}