From de0b5f1b094b2e5948951414d4fe89d8693105e3 Mon Sep 17 00:00:00 2001 From: cxnnqr Date: Tue, 6 Feb 2024 13:27:43 +0100 Subject: [PATCH] print the kgV --- src/kgV/main.c | 2 ++ 1 file changed, 2 insertions(+) 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;