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

int main(){
    // double start_time = omp_get_wtime();
    cout<<"Hello"<<endl;
    // double end_time = omp_get_wtime();   
    // cout<<"Diff: "<<end_time-start_time<<endl;
    return 0;
}

//g++ -fopenmp test.cpp -o test