public class Lecture1
{
 
   public static void main (String [] args)
   {
     System.out.println("Entrez un nombre entier de type byte (entre -128 et +127) : ");
     byte age = Lire.entierByte();
     System.out.println("Vous avez saisi le nombre " + age);
   }
}
