5137: Aether Sage's practice for casting magic

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:1 解决:1

题目描述

You are an adventurer and you have to fight against a Dragon called Eve.
The dragon Eve don't dare blade.So,you go to visit the Aether Sage for some help.
The Aether Sage is a great caster.She told you that the Eve dare the flame slash, 
but if you want to learn the skill you have to practice the matrix multiplication to improve you casting speed.
OK, let's practice.

输入

Two 5-order matrix with each element in the range from 0 to 100.

输出

The multiplication result of the two matrix.

样例输入 复制

    2     3     3     4     1
    1     1     3     3     3
    4     3     0     0     2
    0     2     4     1     3
    0     2     1     2     3
    4     3     0     1     0
    4     0     3     2     2
    2     4     3     3     4
    0     2     4     4     3
    2     2     0     2     0

样例输出 复制

   28    28    34    35    30
   20    27    24    30    23
   32    16     9    14     6
   22    24    22    26    23
   16    14    17    21    14

提示

The output format of each element of the result matrix is "%5d".