#include <stdio.h>
int main(){ char array[]={'t','o','m','c','a','t'}; int i; for(i=0;i<6;i++) { printf("%c",array[i]); } return 0; }