#include <stdio.h>

int main(void) {
	// your code goes here
	char s1[] = {"it's in the eyes of the children as they leave for the very first time"};
	char s2[] = {"it's in the eyes of the children\
	as they leave for the very first time"};
	
	char s3[] = {"한글입니다."};
	char s4[] = {"한글\
	입니다."};
	
	printf("%d %d %d %d", sizeof(s1), sizeof(s2), sizeof(s3), sizeof(s4));
	return 0;
}
