#include #include using namespace std; int main() { int i; cout << "My pid is " << getpid() << endl; while (1) { i++; if (i == 1'000'000) { cout << "million spins " << endl; i = 0; } } return 0; }