单项选择题

有以下程序 #include<stdio.h> void main() { int a=1,b=0; printf("%d,",b=(a++)+(a++)); pfintf("%d\n",a+b); } 程序运行后的输出结果是( )。

A.4,6
B.2,5
C.3,5
D.2,6