单项选择题

下面代码的输出是什么?()
function sum(a, b) {
 return a + b;
}
sum(1, "2");

A.NaN
B.TypeError
C."12"
D.3