using System;
public class Program
{
public static void Main()
// 文字列の開始を表す「"""」と同じ行に文字を入力してはいけない(空白文字を除く)
String NG_Pattern1 = """ aaa
""";
//文字列の終了を示す「"""」と同じ行に文字を入力してはいけない(空白文字を除く)
String NG_Pattern2 = """
aaa""";
}