#include <iostream>
#include<string>
class tag {
public:
std::string tag_name;
tag* child;
};
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
//create object of type tag
tag obj;
obj.tag_name = "original tag";
std::cout<<obj.tag_name<<std::endl;
//create pointer to object obj
tag* tag1 = &obj;
tag1->tag_name = "tag1";
std::cout<<tag1->tag_name;
return 0;
}