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 1011. Conductors

BE CAREFUL ABOUT THIS
Posted by KingNight 14 May 2011 19:18
the input.txt will not be 2 lines,the first line may contain P and q,
so,when you use Pascal,you should be careful about this.
  E.G.
  readln(p);
  readln(q);
 this prog is wrong
you should change it into
readln(p,q);