From 711d8b25de81e3a7d1048ff9b69f04aa4b1c9802 Mon Sep 17 00:00:00 2001 From: SherabTsheringSherpa Date: Tue, 28 May 2024 14:29:50 +0530 Subject: [PATCH] first commit --- num.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/num.c b/num.c index 1222ec7..d30993c 100644 --- a/num.c +++ b/num.c @@ -9,7 +9,7 @@ int main() { printf("Enter the second number: "); scanf("%d", &num2); - sum = num1 + num3; + sum = num1 + num2; printf("The sum of %d and %d is %d.", num1, num2, sum);