import java.io.*;import java.util.ArrayList;import java.util.Collections;import java.util.List;public class BJ18110 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); //앞뒤로 제거해야하는 15%씩 계산. int delete= (int) Math.round(n * 0.15); //리스트..