// Interface for the Binomial Program
// By Neil Broadbent
public interface GCDInterface
{
    public int getGCD();
}
