From a1ac28661b3bb0c359ba388229f10f6cc83bf1d4 Mon Sep 17 00:00:00 2001 From: Raheenfatima068 Date: Thu, 13 Feb 2025 09:35:52 +0500 Subject: [PATCH] added addition to Program.cs --- ProjectDMG/Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ProjectDMG/Program.cs b/ProjectDMG/Program.cs index f30ebab..bddd641 100644 --- a/ProjectDMG/Program.cs +++ b/ProjectDMG/Program.cs @@ -17,3 +17,7 @@ static void Main() { } } } +int a = 6; +int b= 8; +int sum = a +b; +Console.WriteLine("The sum of two numbers a and b: + sum");