public class Solution {
    public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int[] chisla = new int[10];
        for (int i = 0; i < chisla.length; i++) {

            chisla[i] = Integer.parseInt(reader.readLine());
            chisla[i] = 9 - i;
            System.out.println(chisla[i]);

        }

    }
}
вроде же правильно или что я не атк сделал ?