#include "add.h" int mult(int a, int b) { int x = b; while(a > 0) { b = add(b,x); a -= 1; } return b; }