fork download
  1. program tetris;
  2. { constraints }
  3. const
  4. MAXN = 500;
  5.  
  6. { input data }
  7. var
  8. N, i, j : longint;
  9. GRID : array[0..MAXN-1,0..MAXN-1] of longint;
  10.  
  11. begin
  12. {
  13.   uncomment the following lines if you want to read/write from files
  14.   assign(input, 'input.txt'); reset(input);
  15.   assign(output, 'output.txt'); rewrite(output);
  16. }
  17.  
  18. { read numbers N in a single line }
  19. readln(N);
  20.  
  21. { write numbers 42 and 12 in a single line }
  22. writeln(42, 12);
  23. end.
  24.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
4212