#include <stdio.h>

int main() {
    int i;
    int ii = 1;
    while (ii <= 5)
    {
        i = 1;
        while (i <= 10)
        {
            if (i == 1 || i == 10)
                printf("+");
            else
                if (i != 1 && i != 10)
                {
                    printf(" ");
                } else
                    printf(":");
            if (i == 10)
                printf("\n");
            i++;
        }
        ii++;
    }
    
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: