using System;
public class Program
{
public static void Main()
int a, b, c, d, e, f;
d = 200;
a = 34;
e = 15;
b = 46;
c = 49 * 23;
f = a + b + c + 12;
Console.WriteLine("================================================");
Console.WriteLine();
Console.WriteLine("a is {0} , b is {1} , c is {2} , d is {3} , e is {4} , f {5} .", a,b,c,d,e,f);
Console.ReadLine();
}