#ifndef BRAIN_HPP
# define BRAIN_HPP
# include <iostream>
# include <sstream>
class Brain
{
public:
Brain();
Brain(const Brain &other);
Brain &operator=(const Brain &other);
~Brain();
std::string ideas[100];
};
#endif