
#include <iostream>
#include<omp.h>
using namespace std ;

int main()
{
  #pragma omp palallel 
   {
  printf("zeyad\n");
  }

    return 0;
}