using System;
class Program
{
static void Main() {
string str = "c# c c++ java python php";
char ch = 'p';
int trimIndex = str.IndexOf(ch);
if (trimIndex >= 0) {
str= str.Substring(0, trimIndex + 1);
Console.WriteLine(str);
}
}
}
/*
run:
c# c c++ java p
*/