public static void Main()
Console.Write("Console.Write will output to the current line and Not add a line break");
Console.WriteLine("Console.Writeline will output to the current line and add a line break");
string myinput1 = Console.ReadLine();
Console.WriteLine(myinput1);