Is there a more proficient way to add spaces to the output?
//define variables
string myName;
int myAge;
//input
Console.Write("Enter Name:");
myName = (Console.ReadLine());
Console.Write("Enter Age:");
myAge = int.Parse(Console.ReadLine());
//output
Console.Write("Hello" + " " + myName + " " + "Your age is" + " " + myAge);
Console.ReadKey();