GCD Calculator

Calculate Greatest Common Divisor (GCD/HCF) of two or more numbers.

MathFree
Formula
Euclidean: GCD(a,b) = GCD(b, a mod b)
Example

GCD(48, 36) = 12.

Frequently Asked Questions