gcd of 2 and 3
To calculate the GCD (greatest common divisor), we first decompose the numbers into prime factors.
2 = 2
3 = 3
We keep the common prime factors with their smallest exponent.
▶pgcd(2, 3) = 1