import java.util.ArrayList;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
for (int i = 0; i < a; i++) {
System.out.print("#");
}
}
}
์ด๊ฑด ๋๋ฌด ์ฝ์์!
0