using System;
public class Program {
public static void Main() {
string str = "Learn CSharp";
int charPosition = str.IndexOf("C");
string courseName = str.Substring(str.IndexOf("C")); // find the first letter to extract the word "CSharp"
Console.WriteLine(courseName);
}