#include <iostream>
#include <string>
using namespace std;

int main()
{
    string Christmastree = R"(
                                      ☆
                                    a/~~\a
                                   a/****\a
                                  a/~J~~ ⃝\a
                                 a/********\a
                                a/~~ ⃝~~J~~~\a
                               a/*******J****\a
                              a/~J~~~~~~~ ⃝~~~\a
                             a/*****J**********\a
                            a/~ ⃝~~~~~~ ⃝~~J~~~~\a,
                                   |    |
                                   |    |
                                   |    |
                                   )";


    cout << Christmastree;
}
