单项选择题

下面程序的输出为( )。
public class Test
public static void main (String args[])
int x,y;
x=1;
y=2;
System.out.println("The output is"+x+y);

A.The output is xy
B.The output is 3
C.The output is 12
D.The output is x=1 y=2