uses
GraphABC;
var
s: string; //Вся строка
i: byte; //Номер нужного слова
begin
readln(s);
readln(i);
s := s.Split(' ')[0] + ' ' + s.Split(' ')[i - 1];
SetBrushColor(clBlue);
FillRectangle(0, 0, WindowWidth, WindowHeight);
GraphABC.SetFontSize(12);
TextOut(WindowWidth - s.Length * 12, 0, s);
end.