#include <iostream>
using namespace std;
class Player
{
public: int hp;
Player(int h): hp(h){};
};
int main() {
Player* heheszki[4];
for(int i=0;i<4;++i)
{
heheszki[i] = new Player(i);
}
cout<<heheszki[0]->hp<<"\n";
cout<<heheszki[1]->hp<<"\n";
cout<<heheszki[2]->hp<<"\n";
cout<<heheszki[3]->hp<<"\n";
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgp1c2luZyBuYW1lc3BhY2Ugc3RkOwoKY2xhc3MgUGxheWVyCnsKCXB1YmxpYzogaW50IGhwOwoJUGxheWVyKGludCBoKTogaHAoaCl7fTsKfTsKCmludCBtYWluKCkgewoJUGxheWVyKiBoZWhlc3praVs0XTsKCWZvcihpbnQgaT0wO2k8NDsrK2kpCgl7CgkJaGVoZXN6a2lbaV0gPSBuZXcgUGxheWVyKGkpOwoJfQoJY291dDw8aGVoZXN6a2lbMF0tPmhwPDwiXG4iOwoJY291dDw8aGVoZXN6a2lbMV0tPmhwPDwiXG4iOwoJY291dDw8aGVoZXN6a2lbMl0tPmhwPDwiXG4iOwoJY291dDw8aGVoZXN6a2lbM10tPmhwPDwiXG4iOwoJCglyZXR1cm4gMDsKfQ==