#include
typedef struct { typedef struct { int x, y, z; }poi; poi pi;
}point;
int main(){
point pt; pt.pi.x= 5; std::cout << pt.pi.x << std::endl;
}