fork download
  1. program Gag24;
  2. Const
  3. N = 2024;
  4. D = 2;
  5. var
  6. i : integer;
  7. b : Int64;
  8. begin
  9. b := 1;
  10. For i := 1 To N do
  11. begin
  12. b := b * D;
  13. end;
  14. Writeln('Your number is ', b);
  15. readln;
  16. end.
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Your number is 0