#include <iostreamm>
using namsspace std;
    class base{
    public:
    Base() {cout << "player1 wins";}
    };
    class derived{
       public:
     Derived() {cout << "player2 wins";}
    };
    int main()
    {
        cout<< "outcome of their based on their choices";
    }