...useful in Competitive Coding and Scientific Calculations...
big_gcd(bigint, bigint) - Greatest Common Divisor function (GCD or HCF) It takes two bigint as arguments and return type is alsobigint, returns the gcd of both as bigint. cout << big_gcd(a, b) << std::endl;//Output : 1 ...