public static void Main()
Console.WriteLine("Your best Friend App");
Console.WriteLine("Hi. What do your pals call you?");
uName = Console.ReadLine();
Console.WriteLine(uName + ",how is your day going?");
String feeling = Console.ReadLine();
Console.WriteLine ("I am feeling" + feeling+" too!");
Console.WriteLine(uName + ", who is your fav teacher");
String fTeach = Console.ReadLine();
Console.WriteLine(fTeach + " is my favourite teacher too!");
Console.WriteLine("what year were you born in yyyy?");
int bYear = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Wow " + uName+ " you are " + uAge+ " years old this year. ");