코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine()) / 4;
String a = "long";
StringBuilder sb = new StringBuilder();
for (int i = 0; i < N; i++) {
sb.append(a).append(" ");
}
sb.append("int");
System.out.println(sb);
}
}