using System;
public class LearnModo {
public static void Main() {
// Ask the user to enter their name
Console.WriteLine("Enter your name:");
// Read the data the user enteres
string name = Console.ReadLine();
// Print what the user has entered
Console.WriteLine("Welcome to the course, " + name + "!");
}