public static void main(String[] args) {
    readData();
}

public static void readData() {
    //напишите тут ваш код

    ArrayList<Integer> data = new ArrayList<Integer>();
    BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

    while (true){
        try{
            Integer n = Integer.parseInt(reader.readLine());
            data.add(n);
        }catch (IOException e){

            for(int i=0; i<data.size(); i++){
                System.out.println(data.get(i));
            }
        }
    }
}