diff --git a/src/kgV/main.c b/src/kgV/main.c index 46410bd..198b263 100644 --- a/src/kgV/main.c +++ b/src/kgV/main.c @@ -7,6 +7,8 @@ int main(){ int firstNum = usergetd("first number: ", 0, NULL); int secondNum = usergetd("second number: ", 0, NULL); int result = kgV(firstNum, secondNum); + printf("The result is: %d\n", result); + return 0;