private static int CalculateWith2ParamsAndTime(int first, int second, out long timeMeasured, GCDNew gCD) => gCD.Calculate(first, second, out timeMeasured);
private static int CalculateWith2Params(int first, int second, GCDNew gCD) => gCD.Calculate(first, second);