#include <iostream>
#include <string>

int main()
{
    std::string hello = R"(
    #   #  #####  #      #      #####
    #   #  #      #      #      #   #
    #####  #####  #      #      #   #
    #   #  #      #      #      #   #
    #   #  #####  #####  #####  #####
    )" ;

    std::cout << hello ;
}
