/*
 * arrows.c - demonstrate the idea of how the arrows are rendered on the map
 */
#include <stdio.h>
long S[][7] =
{
    { 0,0,0,0,0,0,0} ,
    { 0,0,1,0,0,0,0} ,
    { 0,1,1,1,0,0,0} ,
    { 0,1,1,1,0,0,0} ,
    { 1,1,1,1,1,0,0} ,
    { 0,0,1,0,0,0,0} ,
    { 0,0,1,0,0,0,0} ,
    { 0,0,0,0,0,0,0} ,
    { 0,0,1,0,0,0,0} ,
    { 0,0,1,0,0,0,0} ,
    { 1,1,1,1,1,0,0} ,
    { 0,1,1,1,0,0,0} ,
    { 0,1,1,1,0,0,0} ,
    { 0,0,1,0,0,0,0}
} , y, x ;
int main(void)
{
    for (y = 0; y < 14; y++)
    {
        for (x = 0; x < 7; x++)
            putchar(S[(y<7?0:7)+y%7][x] ? '#' : '.');
        putchar('\n');
    }
}
