class JSample3_1{ public static void main(String args[]){ String str = "こんにちは。"; str = str + "加藤さん。"; System.out.println(str); } }