You can use only one System.out.println to print out one message, but that message can be typed up on different lines! Like this:
System.out.println("This string "
+ "can be combined "
+ "with other strings "
+ "using addition?!");
And the output would be this:
This string can be combined with other strings using addition?!
1そうだね 未プレイ