using System;
public class Program
{
public static void Main()
//declare our three number variables
int firstNumber;
int secondNumber;
int result;
//assign the value of 2 then the first two variables
firstNumber = 2;
secondNumber = 2;
//add the two variables together and assign the answer to result
result = firstNumber + secondNumber;
//output the result
Console.WriteLine(result);
}