public static void Main()
Console.WriteLine("This program will calculate the GCD of two numbers. Please enter your two values");
long num1 = long.Parse(Console.ReadLine());
long num2 = long.Parse(Console.ReadLine());
long ans = GCD (num1, num2);
static private long GCD(long a, long b)