package p4a;

import java.util.Random;

public class MainTableauStdGet {
	public static void main(String[] args) {
		Random rnd = new Random();
		int nbOperation = Integer.parseInt(args[0]);
		TableauStd tab = new TableauStd(nbOperation);

		for (int i = 0; i < nbOperation; i++) {
			tab.ajout(0, i);
		}
		for (int i = 0; i < nbOperation; i++) {
			tab.acces(rnd.nextInt(nbOperation));
		}
	}
}