在以下代码中,如果想让result等于a与b的和,请补全以下代码?
int a = 5; int b = 3; int result; result = ? cout << result << endl;
a / b
a - b
a * b
a + b