Pretty much, I am trying to do the same thing as what python does:
x = input("Enter a number")
If I run this and enter "4", the console will look like
Enter a number4
In C# to my knowledge there is nothing like this and you have to do:
Console.WriteLine("Enter a number");
x = Console.ReadLine();
This makes it so that the prompt and the place where the user types in their input are on different console lines.
How do I make the prompt and the input on the same console line?