fork download
  1. program ideone;
  2. var A, B, C : integer;
  3. begin
  4. write (A);
  5. readln (A);
  6. write (B);
  7. readln (B);
  8. write (C);
  9. readln (C);
  10. if C>A then writeln ('Bottom');
  11. end.
Success #stdin #stdout 0s 4396KB
stdin
10
20
40
stdout
000Bottom