Martinemaberry8480 Martinemaberry8480 18-10-2022 Computers and Technology contestada the following code computes the product of a and b. what is its runtime? int product (int a, int b) { int sum =0; for (int i=0; i< b; i ) { sum = a; } return sum; }