using System; public class Test { public static void Main() { Console.WriteLine("The C# Add 2 Numbers Program."); int x = 10; int y = 10; int z = (x + y); Console.WriteLine("X " + x + " Y " + y + " Z " + z); } }