#include <stdio.h>

int main(int argc, char** argv){
	printf("123\n456\n789\n");
	printf("シングルクオーテーション：\'ダブルクオーテーション:\"\n");
	return 0;
}