using System;
public class Program
{
public static void Main()
int x=2, y=45;
Console.WriteLine("x={0}y={1}x+y={3}",x,y,x+y);
}