//kids first function
#include <iostream>
using namespace std;
void goatse();

int main()
{
     goatse();
}
void goatse()
{
	cout << "∗ g o a t s e x ∗ g o a t s e x ∗ g o a t s e x ∗" 	 <<endl;
	cout << "g                                               g" 	 <<endl;
	cout << "o /     \\             \\            /    \\       o" 	 <<endl;
	cout << "a|       |             \\          |      |      a" 	 <<endl;
	cout << "t|       '.             |         |       :     t" 	 <<endl;
	cout << "s'        |             |        \\|       |     s" 	 <<endl;
	cout << "e \\       | /       /  \\\\\\   --__ \\\\       :    e" 	 <<endl;
	cout << "x  \\      \\/   _--~~          ~--__| \\     |    x" 	 <<endl;
	cout << "∗   \\      \\_-~                    ~-_\\    |    ∗" 	 <<endl;
	cout << "g    \\_     \\        _.--------.______\\|   |    g" 	 <<endl;
	cout << "o      \\     \\______// _ ___ _ (_(__>  \\   |    o" 	 <<endl;
	cout << "a       \\   .  C ___)  ______ (_(____>  |  /    a" 	 <<endl;
	cout << "t       /\\ |   C ____)/      \\ (_____>  |_/     t" 	 <<endl;
	cout << "s      / /\\|   C_____)       |  (___>   /  \\    s" 	 <<endl;
	cout << "e     |   (   _C_____)\\______/  // _/ /     \\   e" 	 <<endl;
	cout << "x     |    \\  |__   \\\\_________// (__/       |  x" 	 <<endl;
	cout << "∗    | \\    \\____)   '----   --'             |  ∗" 	 <<endl;
	cout << "g    |  \\_          ___\\       /_          _/ | g" 	 <<endl;
	cout << "o   |              /    |     |  \\            | o" 	 <<endl;
	cout << "a   |             |    /       \\  \\           | a" 	 <<endl;
	cout << "t   |          / /    |         |  \\           |t" 	 <<endl;
	cout << "s   |         / /      \\__/\\___/    |          |s" 	 <<endl;
	cout << "e  |           /        |    |       |         |e" 	 <<endl;
	cout << "x  |          |         |    |       |         |x" 	 <<endl;
	cout << "∗ g o a t s e x ∗ g o a t s e x ∗ g o a t s e x ∗" 	 <<endl;
}