using System;
class Program
{
static void Main() {
string name = "James John William";
Console.WriteLine(name);
int index1 = name.IndexOf(" ");
int index2 = name.IndexOf(" ", index1 + 1);
string middleName = name.Substring(index1 + 1, index2 - 1 - index1);
Console.WriteLine(middleName);
}
}
/*
run:
James John William
John
*/