ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1186. Chemical Reactions

For All Who Got Wa1 or Other on Pascal.
Posted by ACM.Tolstobrov_Anatoliy[Ivanovo SPU] 5 Feb 2006 16:54

Add This Function And You Maybe Got AC.

Function Copy(S:String;St,En:LongInt):String;
Var Ans:String;
i:LongInt;
Begin
Ans:='';
For i:=St To En Do Ans:=Ans+S[i];
Copy:=Ans;
End;


Good Luck & Have Fun