以下语句输出的结果是? 
String str="123";   
int x=4,y=5;   
str=str+(x+y);   
System.out.println(str);
A 1239
B 12345
C 会产生编译错误
D 123+4+5