fork download
  1. var
  2. a : integer;
  3. begin
  4. (* your code goes here *)
  5. a := 5;
  6. case a of
  7. 1: writeln('one');
  8. 2: writeln('two');
  9. otherwise // D:
  10. writeln(a);
  11. end;
  12. end.
Success #stdin #stdout 0.01s 5348KB
stdin
Standard input is empty
stdout
5