using System;
class Program
{
static void Main() {
string s = "c c++ c# java python c# java";
string word = "c#";
int index = s.IndexOf(word);
s = (index < 0) ? s : s.Remove(index, word.Length + 1);
Console.Write(s);
}
}
/*
run:
c c++ java python c# java
*/