1#include "math.h" 2 3int add(int a, int b) { 4 return a + b; 5} 6 7int multiply(int a, int b) { 8 return a * b; 9}