Introduction
In this lab, you will learn how to find the Greatest Common Divisor (GCD) of two numbers using functions in C++. The GCD is the largest number that divides both of the given numbers. We will use a recursive approach to implement the function.