using System;
class Program
{
static void Main() {
string s = "vb.net javascript php c c++ python c#";
int pos1 = s.LastIndexOf(" ");
int pos2 = s.LastIndexOf(" ", pos1 - 1);
Console.WriteLine(pos1); // debug
Console.WriteLine(pos2); // debug
string last_two_words = pos2 > -1 ? s.Substring(pos2 + 1) : s;
Console.WriteLine(last_two_words);
}
}
/*
run:
34
27
python c#
*/