using System;
// Step 3: Declare and Initialize Variables
int x = 5; // You can assign any integer value to x
int y = 3; // You can assign any integer value to y
// Step 4: Perform Addition
int sum = x + y; // Add the values of x and y and store the result in the sum variable
// Step 5: Display the Result
Console.WriteLine("The sum of x and y is: " + sum);
// Step 6: End of Program
Console.ReadLine(); // Keep the console window open until a key is pressed