728x90
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int longN = N/4;
for(int i=1; i<=longN; i++){
System.out.println("long");
}
System.out.println("int");
}
}
728x90
'Coding Practice > BAEKJOON - Java' 카테고리의 다른 글
[BAEKJOON] 2438번 (0) | 2023.03.27 |
---|---|
[BAEKJOON] 11022번 (1) | 2023.03.25 |
[BAEKJOON] 25304번 (0) | 2023.03.22 |
[BAEKJOON] 2480번 (0) | 2023.03.20 |
[BAEKJOON] 2525번 (0) | 2023.03.11 |