13
1
using System;
2
public class LearnModo {
3
public static void Main() {
4
// Ask the user to enter their name
5
Console.WriteLine("Enter your name:");
6
7
// Read the data the user enteres
8
string name = Console.ReadLine();
9
10
// Print what the user has entered
11
Console.WriteLine("Welcome to the course, " + name + "!");
12
}
13
}
Cached Result