fork download
  1. program ideone;
  2. var b,c:integer;
  3. begin
  4. b:=16;
  5. c:=1;
  6. while (b<>4) do
  7. begin
  8. c:=(c+b)-3;
  9. b:=b-2;
  10. end;
  11. write(c);
  12. end.
Success #stdin #stdout 0s 5544KB
stdin
Standard input is empty
stdout
49