#ifndef GCD_HPP_ #define GCD_HPP_ /// Compute greatest-common-denominator. /// @param n /// @param m int gcd(int n, int m); #endif