package com.gmail.vhrushyn;
import java.util.Scanner;
public class main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
System.out.println("enter height and then width");
int h = sc.nextInt();
int w = sc.nextInt();
paral(h, w);
}
static void paral(int a, int b) {
for (int i = 0; i < a; i++) {
for (int j = 0; j < b; j++) {
System.out.print("*");
}
System.out.println("");
}
}
}