9 lines
81 B
Plaintext
9 lines
81 B
Plaintext
|
Program test;
|
||
|
var s: string;
|
||
|
begin
|
||
|
s:='123456789';
|
||
|
s[1]:=s[2];
|
||
|
writeln(s);
|
||
|
end.
|
||
|
|