using System;
int myAge = 12;
string myCity = "Lorain";
int myBirthYear = 2011;
int myBirthDay = 7;
int myBirthMonth = 3;
string myName = "Hailey Hull";
Console.WriteLine($"My name is {myName} and my birthday is: {myBirthMonth}/{myBirthDay}/{myBirthYear}. I am {myAge} years old and live in {myCity}.");