a = make(10, make(10));
for i in [1..10]
for j in [1..10]
a[i][j] = random(20);
endfor
s = "";
s += tostr(" ", a[i][j]);
if (a[i][j] == 20)
break i;
endif
player:tell(s);