using System;
int x = 5;
int y = 3;
int sum = x + y;
Console.WriteLine("The sum of x and y is: " + sum);