program Ausgeben(output);

var Buchstabe:char;
i:integer;
begin
for Buchstabe:='a' to 'z' do


writeln (Buchstabe[2i]);
end.