#include <iostream>
using namespace std;

struct Node{
    int data;
    Node* pNext;
};

void deleteLL(Node* &pHead) {
    while(pHead != nullptr) {
        Node* next = pHead->pNext;
        delete pHead;
        pHead = next;
    }
}

int main() {}