#include "operations.h"

// Function to simulate send() call to a node
void send(int node, const std::string& key) {
    // Your send() implementation here
    // std::cout << "Sending key=" << key << " to Node " << node << std::endl;
    return;
}