fork download
  1. program q227143579;
  2. var
  3. s0, s1: string;
  4. begin
  5. ReadLn(s0);
  6. ReadLn(s1);
  7. if Pos(s1, s0) <> 0 then
  8. Delete(s0, Pos(s1, s0), Length(s1));
  9. Insert('@', s0, 1);
  10. WriteLn(s0);
  11. end.
Success #stdin #stdout 0s 5392KB
stdin
qwertyuiop[
rty
stdout
@qweuiop[