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");