Problem D: 矩形

Problem D: 矩形

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 33  Solved: 25
[Status] [Submit] [Creator:]

Description

我们将“长方形”又称为“矩形”。  

给你两个整数 n 和 m(1 ≤ n,m ≤ 100),请你输出一个由字符 '@' 组成的、行数为 n 列数为 m 的矩形。  

Input

输入共一行,包含两个整数 n 和 m(1 ≤ n,m ≤ 100),分别表示行数和列数。

Output

输出共 n 行,每行包含 m 个字符 '@',用于表示这个矩形。  

Sample Input Copy

2 3

Sample Output Copy

@@@
@@@