Write and Read Console
1. Console.WriteLine()
This method is used to print a specified text or variable value to the console window.
Console.WriteLine(value);
// Print a message to the console
Console.WriteLine("Hello, world!");
// Print the value of a variable
...