Problem1050--画正方形

1050: 画正方形

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

请用给定的数字画边长为n的正方形。

Input

第一行有一个T,表示有T组测试数据。

每一组测试数据有两个整数,第一个表示需要画的正方形的边长,第二个表示正方形中的填充值x(0<=x<=9)

Output

每一组测试输出符合题意的正方形,组与组之间有且仅有一个空行,用以区分正方形。

Sample Input Copy

2
2 1
3 2

Sample Output Copy

11
11

222
222
222

Source/Category