問題17-13
次のコードを実行した結果として正しいものを選択してください。(1つ選択)
function add($a, $b=5, $c=10){
  $sum = $a + $b + $c;
  return $sum;
}

print add(1, 2);