ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1731. Dill

why wa1
Posted by IlushaMax 7 Jul 2016 16:49
var m,n:word; i:word;
begin
  readln(m,n);
  for i:=1 to n do
  begin
    write(i,' ');
  end;
  writeln;
  for i:=1 to m do
  begin
    write(i*n+1,' ');
  end;
end.

What test is wrong with it?

Edited by author 07.07.2016 17:05