@ -1,3 +1,4 @@
#include "multiplication.h"
int multiply(int a, int b) {
if (a==0||b==0) return 0;
else return a * b;