填空题

有如下程序:
#include <iostream>
using namespace std;
class PARENT
public:
PARENT( )cout<<"PARENT";

class SON:public PARENT
public:
SON( )cout<<"SON";

int main( )
SON son;
PARENT*P;
P=&son;
return 0;
程序的输出结果是______。

【参考答案】

PARENTSON