// Reading users Input
// Here the code will save the input of the user, To the variable (Input)
string input = Console.ReadLine();
// And heres how we Display the saved input
Console.WriteLine(input);
// or
Console.WriteLine("Some Text {0}", input);
// Example where it could be used
Console.WriteLine("Type in your name please!");
string nameInput = Console.ReadLine();
Console.WriteLine("Welcome {0}!", nameInput);
Console.Write("Enter your name:");
string name = Console.ReadLine();
Console.Write("Enter your age:");
string age = Console.ReadLine();
Console.WriteLine("Hello" + name + " you are " + age);
Console.ReadLine();