单项选择题

下列程序段的输出结果是( )。
String MyStr="Hello,";
Mystr=MyStr + "World!";
System.out.println(Mystr);

A.Hello,World!
B.Hello,
C.World!
D.该程序段有语法错误