import java.io.*;

class ArrayFile {
  public static void main(String[] args)
  throws IOException {
    int v[]=new int[10];
    int i;
    FileReader f;
    BufferedReader b;
    String s;

    f=new FileReader("numeri.txt");
    b=new BufferedReader(f);

// lettura array da file
    for(i=0; i<10; i++) {
      s=b.readLine();
      if(s==null)
        break;
      v[i]=Integer.parseInt(s);
    }

// stampa dell'array
    for(i=0; i<10; i++) {
      System.out.println(v[i]);
    }

  }
}
