#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>


int multiply(int num1, int num2){
  return num1*num2;
}
