Duplicate characters by uru

var s:string;i:word;begin repeat readln(s);for i:=1to length(s)do write(s[i]+s[i]);writeln(Chr(10))until 1<0;end.

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page