#include <iostream>
using namespace std;

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

void displayLL(Node* cur) {
    for (; cur != nullptr; cur = cur->pNext) {
        cout << cur->data << endl;
    }
}

int main() {}