/* main.cpp The main "driver" for our program. */ #include #include "mymath.hpp" int main() { cout << gcd(1122, 1265) << endl; return 0; }