#include <iostream>
#include <string.h>
using namespace std;
class human {
public:
string name;
int age;
human(string, int);
};
human::human(string name, int age) {
this->name = name;
this->age = age;
}
int main() {
human gabriel("Gabriel Sales", 16);
cout << gabriel.name;
}
//https://pt.stackoverflow.com/q/44627/101
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3RyaW5nLmg+CnVzaW5nIG5hbWVzcGFjZSBzdGQ7CgpjbGFzcyBodW1hbiB7CiAgICBwdWJsaWM6CiAgICAgICAgc3RyaW5nIG5hbWU7CiAgICAgICAgaW50IGFnZTsKICAgICAgICBodW1hbihzdHJpbmcsIGludCk7Cn07CgpodW1hbjo6aHVtYW4oc3RyaW5nIG5hbWUsIGludCBhZ2UpIHsKICAgIHRoaXMtPm5hbWUgPSBuYW1lOwogICAgdGhpcy0+YWdlID0gYWdlOwp9CgppbnQgbWFpbigpIHsKICAgIGh1bWFuIGdhYnJpZWwoIkdhYnJpZWwgU2FsZXMiLCAxNik7CiAgICBjb3V0IDw8IGdhYnJpZWwubmFtZTsKfQoKLy9odHRwczovL3B0LnN0YWNrb3ZlcmZsb3cuY29tL3EvNDQ2MjcvMTAx