using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter username:");
// Create a string variable and get user input from the keyboard and store it in the variable
string userName = Console.ReadLine();
Console.WriteLine(userName);
}