@ -1,3 +1,4 @@
int multiply(int a, int b) {
return a * b;
if (a==0||b==0) return 0;
else return a * b;
}