#include using namespace std; class Uneautre { int elt; public: Uneautre(int i):elt(i) {} void affiche(Idem x) { cout << elt << " " << x.elt << endl; } }; class Idem{ int elt; public: Idem(int i):elt(i) {} void affiche(Uneautre y) { cout << elt << " " << y.elt << endl; } }; int main() { Idem zz(55); Uneautre ww(66); zz.affiche(ww); ww.affiche(zz); return 0; }