#include #include int main() { #pragma omp parallel { int ID = omp_get_thread_num(); printf(" hello(%d) \n", ID); printf(" world(%d) \n", ID); } }