#include <stdio.h>

int main() 
{
    char arr[] = {73, 32, 99, 97, 110, 32, 100, 111, 32, 105, 116 , 33};
    printf("%s\n",arr);

    return 0;
}