program scopy; var s, t: string; begin s:='abcdef'; t:=copy(s, 2, 3); writeln(t); end.