// Directions: Practice #1-1
// 1) Fork this to your account.
// 2) Add code to the Main method:
// a) Create a string variable called sName and assign your name to it.
// b) Create a integer variable called iAge and assign any age to it. (For example, 25)
// c) Createa and Assign a value to sOutput that is the following: Hello, Brian. You will be 26 years old on your next birthday.
// Use the sName and iAge
// to accomplish this.
// d) WriteLine sOutput to the Console.
// 3) Save and Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
string sName = "zach";
int iAge = 25;
sName = "Brian";
iAge = 26;
string sOutput = "Hello, " + sName + ". You will be " + iAge + " years old on your next birthday.";
Console.WriteLine(sOutput);
}