#include
class A
{
int a;
public:
A.(){a=0;}
A.(int as)
a=as;
cout<
}
};
void main()
A.x,y(2),z(3);
A.1
B.2
C.3
D.4