#include using namespace std; int main(){ cout << "Hello this is Patrick" << endl; auto start = chrono::high_resolution_clock::now(); // Insert code here auto duration = chrono::duration_cast(chrono::high_resolution_clock::now() - start); cout << (float)duration.count()/1000 << endl; return 0; }