import java.util.Scanner;
public 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++) {
for (int j = 0; j < a; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
'프로그래머스' 카테고리의 다른 글
프로그래머스 - 하샤드 수 (0) | 2019.01.08 |
---|---|
프로그래머스 - 행렬의 덧셈 (0) | 2019.01.08 |
프로그래머스 - x만큼 간격이 있는 n개의 숫자 (0) | 2019.01.08 |
프로그래머스 - 나누어 떨어지는 숫자 배열 (0) | 2019.01.08 |
프로그래머스 - 문자열 내 p와 y의 개수 (0) | 2019.01.08 |