// Interface for the Binomial Program
// By www.neiljohan.com
public interface GCDInterface
{
    public int getGCD();
}

