using System;
public class Program
{
public static void Main()
int a =6;
int b =4;
Console.WriteLine("a={0}\nb={1}\na+b={2}", a,b,a+b);
}