using System;
using System.Text;
public class Program {
public static void Main() {
StringBuilder sb = new StringBuilder("Hello, Welcome to the C# Course!");
sb.Remove(0, 7); // The first argument is the start Index, and the second is the length of the string to be removed.
Console.WriteLine(sb.ToString());
}