ПАСКАЛЬ вывести на экран таблицу умножения на n!!!!!!!!
Uses crt; var i,n:integer; begin readln(n); for i:=1 to 9 do writeln(i,'x',n,'=',i*n); end.