Found the five pairwise concatative prime number

This commit is contained in:
2021-04-20 23:08:20 +02:00
parent d4a063ef64
commit bfb2a5fe85
2 changed files with 165 additions and 2 deletions

View File

@@ -1,11 +1,16 @@
#include <iostream>
#include <chrono>
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::milliseconds>(chrono::high_resolution_clock::now() - start);
cout << (float)duration.count()/1000 << endl;
return 0;
}