@ -3,6 +3,10 @@
#include "ggT.h"
int kgV(int a, int b){
// Case for at least one number is Zero
if(a == 0 || b == 0) return 0;
// Regular case of calculating the kgV
return abs(a*b/ ggT(a, b));
}