#include<iostream>
#include "MyMathLib.h"

int main()
{
	//used for testing our math library
	//std::cout << add(1,2) << std::endl;
	//std::cout << subtract(2,1) << std::endl;
	//std::cout << multiply(2,2) << std::endl;
	//std::cout << divide(4,2) << std::endl;
	
};