using System;
public class Program
{
public static void Main()
int a, b, c, d, e, f, C;
a = 34;
b = 46;
c = 49 * 23;
d = 200;
e = 15;
f = a + b + c + 12;
C = a * 2;
Console.Write("The array should be formulas and when the program is ran the array will turn into value.");
Console.ReadLine();
Console.WriteLine();
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
Console.WriteLine("The variable a is {0}, b is {1}, c is {2}, d is {3}, e is {4},and f is {5}", a,b,c,d,e,f);
Console.WriteLine("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
}