printf("GCD of the two numbers is %d\n", gcd_recursion(x, y)); printf("LCM of the two numbers is %d\n", lcm_recursion(x, y)); ...