Project #1: MathLibrary1

Your task:

Write a simple math contract that does the following:

Adds two numbers
Subtracts two numbers
Multiplies two numbers
Divides two numbers
For the multiplication process, make two versions:
- one that uses the multiplication operator
- and another that uses a loop.
For the division process, implement a check so the program does not divide by zero.