#include <iostream>
#include <string>

class Pokemon{
  public :
    string nom;
    float poids;
    int nb_membres;

    ~Pokemon();
}
