public static long getMaxDivisor(long lFirstInput, long lSecondInput) {
while (lSecondInput % lFirstInput != 0) {
/**
*/
int temp = (int) (lSecondInput % lFirstInput);
lSecondInput = lFirstInput;
lFirstInput = temp;
}
return lFirstInput;
}