using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string s = "c# java c++ c", subs;
char ch = 'j';
int start = s.IndexOf(ch);
int end = s.IndexOf(' ', start);
subs = s.Substring(start, end - start);
Console.WriteLine(subs);
}
}
}
/*
run:
java
*/