using System;
public class Program
{
public static void Main(string[] args)
{
string str = "java go c c++ python c#";
int pos = str.IndexOf("c", StringComparison.Ordinal);
string part1 = "", part2 = "";
if (pos != -1) {
part1 = str.Substring(0, pos);
part2 = str.Substring(pos);
}
Console.WriteLine(part1);
Console.WriteLine(part2);
}
}
/*
run:
java go
c c++ python c#
*/