the batman

#include <stdio.h>

// Function prototype
void printBatmanLogo();

int main() {
    // Call the function to print the Batman logo
    printBatmanLogo();

    return 0;
}

// Function to print the Batman logo
void printBatmanLogo() {
    printf("        .  ,   .\n");
    printf("    ...  :  :  ...\n");
    printf("     :   : . :   :\n");
    printf("  ...:  :  :  :... \n");
    printf("     :   : :   :\n");
    printf("     .   : :   .\n");
    printf("         . .\n");
}