import java.util.Scanner;
class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
for ( int i = 0; i < b; i++) // 입력받은 b의 값(3)만큼 반복
{
for ( int j =0; j< a; j++) // 입력받은 a의 값(5) 만큼 반복
{
System.out.print("*"); // 개행을 하지 않고 * 출력
}
System.out.print("\n"); // 한줄 개행
}
}
}