# include "cgi_utils.hpp" int main (int ac, char **av, char ** env) { std::string http_header; std::string http_status; std::string rq_body; std::cin >> rq_body; (void)ac; (void)av; (void)env; http_header = "Content-Type: text/html; charset=UTF-8" CRLF; std::cout << http_header << CRLF; return 0; }