#include <stdio.h>
#ifdef DOS
#include <conio.h>
#endif
void leggi(int A[],int dim){
 int i;
  for(i=0;i<dim;i++){
    printf("%d) ",i+1);
    scanf("%d",&A[i]);
  }
}

