单项选择题

下列程序运行后的输出结果是( )。
public class Sun
public static void main(String args[])
int a,b;
a=0;
b=0;
for(int m=1;m<=10;m++)

a=a+1;
b=0;
for(int j=1;j<=10;j++)

a=a+1;
b=b+2;


System.out.println(a+","+b);

A.10,20
B.20,110
C.110,20
D.200,110