单项选择题

A.print(int(a)+b)结果是3
B.print(a+b)结果是TypeError:mustbestr,notint
C.print(a+str(b))结果是12
D.print(a+str(b))结果是3