#include<stdio.h>
int main()
{
    char arr[10];
    arr[10] = "world";
    printf("%s",arr);
    return 0;
}