public class Program {
public static void main(String[] args) {
String str = "java go c c++ python c#";
int pos = str.indexOf("c");
String part1 = "", part2 = "";
if (pos != -1) {
part1 = str.substring(0, pos);
part2 = str.substring(pos);
}
System.out.println(part1);
System.out.println(part2);
}
}
/*
run:
java go
c c++ python c#
*/