#include <stdio.h>

int main() {
    // 途中で改行する文字列
    const char* message = "これは途中で\n改行される文字列です。";

    // 文字列を出力
    printf("%s\n", message);

    return 0;
}