CF417E.Square Table

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

While resting on the ship after the "Russian Code Cup" a boy named Misha invented an interesting game. He promised to give his quadrocopter to whoever will be the first one to make a rectangular table of size n×mn×m , consisting of positive integers such that the sum of the squares of numbers for each row and each column was also a square.

Since checking the correctness of the table manually is difficult, Misha asks you to make each number in the table to not exceed 10810^{8} .

输入格式

The first line contains two integers nn and mm ( 1<=n,m<=1001<=n,m<=100 ) — the size of the table.

输出格式

Print the table that meets the condition: nn lines containing mm integers, separated by spaces. If there are multiple possible answers, you are allowed to print anyone. It is guaranteed that there exists at least one correct answer.

输入输出样例

  • 输入#1

    1 1
    

    输出#1

    1
  • 输入#2

    1 2
    

    输出#2

    3 4
首页