#include <stdio.h>

int main()
{
    int thread_id = 0;

    printf("Hello World from thread %d \n", thread_id);

    return 0;
}