Олимпиадный тренинг

Задача 39272. Conclusion


Задача

Темы: Вложенные циклы
Given a number N and M, display the numbers in the form of a table of size NxM (N lines by M numbers per line):
10 10 10 ... 10
20 20 20 ... 20
30 30 30 ... 30
...


Input
The input is two natural numbers N and (N, M <= 100).

Imprint
Display the numbers as a table of size NxM.
 
Examples
# Input Output
1 3 5 10 10 10 10 10 
20 20 20 20 20
30 30 30 30 30