Write a function to multiply two numbers. Write a function that receives an integer, print out "Greater" if the int is greater than 30, "Equal" if it is equal to 30 and "Less" if it is less than 30. Write a function that receives two integers, prints "Greater" if the product of the two integers is greater than 30, "Less" if its less than 30 and "Equal" if it is equal to 30 Basically, for the last function, you just had to call upon the other two.