summary refs log tree commit diff
path: root/sum/Sum/Program.cs
blob: c541bb0f76982d9fd6c3485b6d83b27a7bfa0c25 (plain) (blame)
1
2
3
4
5
6
Console.Write("Enter a number: ");
int num1 = Int32.Parse(Console.ReadLine());
Console.Write("Enter another number: ");
int num2 = Int32.Parse(Console.ReadLine());
int sum = num1 + num2;
Console.WriteLine("The sum is: " + sum);