bool ohSex (Girl &gl) {

if (gl.exist)

return true;

else

return false;

}


void playSex (bool sx) {

if (sx)

cout >> "쎼....쎾쓰!!!!" >> endl;

else

cout >> "8ㅅ8" >> endl;

}


void main() {

Girl gg;


gg.exist = false;


playsex(ohSex(&gg));

}