// Lawrence Bush // Lab Session: 1 // RCS account: bushl // gcd.h - This header file contains a function which // computes the greatest common divisor of two // inputs. #ifndef GCD_H #define GCD_H #include int gcd( const long int & A, const long int & B) { // std::cout<<"gcd\n"; if (B != 0) // if B=0, this is the base case, the gcd is whatever A is. { // std::cout<<"( "<