import java.util.Scanner;
public class BOJ25314 {
public static void main(String[] args) {
try(Scanner sc = new Scanner(System.in)) {
int N=sc.nextInt(); //입력변수
if(N%4==0){
for(int i=1; i<=N/4; i++){
System.out.printf("long ");
}
System.out.println("int");
}
}
}
}
'Baekjoon > Java' 카테고리의 다른 글
BOJ]2739번 구구단 (0) | 2025.03.21 |
---|---|
BOJ2884]알람 시계 (1) | 2025.03.20 |
BOJ9498]시험 성적 (0) | 2025.03.20 |
BOJ1330]두 수 비교하기 (0) | 2025.03.20 |