#include <stdio.h>
int main()
{

    printf("Column A\tColumn B\tColumn C");
    printf("\nMy Computer\'s Beep Sounds Like This: \a!\n");
    printf("\"Letz\bs this is a test test test test \\ \\ ");
    printf("character \\\" she said\n");

    return 0;
}