import java.io.*;

public class TP4{

   public static void main(String[] arg){
      String[] equipe = {"Paris St-Germain","Olympique de Marseille",
      "Olympique Lyonnais","AS St-Etienne","Valenciennes FC", 
      "Girondins de Bordeaux","LOSC Lille","Toulouse FC",
      "Stade Rennais FC", "Stade de Reims",
      "FC Lorient", "AC Ajaccio", "SC Bastia",
      "Montpellier Herault SC", "OGC Nice",
      "Stage Brestois 29", "Evian TG FC", "FC Sochaux-Montbeliard",
      "ESTAC Troyes","AS Nancy-Lorraine"};
      int[] niveau = {5,5,4,4,4,4,4,4,4,3,3,3,3,3,3,3,2,2,1,1};
      
      //affichePoints(equipe,score);
   }






   public static int nombreAleatoire(int lower,int higher){
      return (int)(Math.random() * (higher+1-lower)) + lower;
   }

   public static void affiche(String message){
      System.out.println(message);
   }

   public static String reponseALaQuestion(String question){
      System.out.println(question);
      String chaine="";
      BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in)); 
      
      try 
    {
      chaine = keyboard.readLine(); 
      }
      catch (IOException e)
    {
   System.out.println("Erreur de frappe");
   //System.exit(0);
    }      
      return chaine;
   }
   

   
}