class Personne {
    String nom;
    int    age;
}

class Exo1 {

    static void affiche (Personne p) {
        System.out.println(p.nom + " " + p.age);
    }

    static void main (String[] args) {

        Personne p = new Personne();
        p.nom = args[0];
        p.age = Integer.parseInt(args[1]);
        affiche(p);
    }
}
