#include <iostream>
usingnamespace std;
struct Node
{
int info;
Node *Next;
};
void DisplayANode( Node* );
void InsertANode( Node*, int );
int main()
{
int x;
Node* F = new Node;
cout << "x = ";
cin >> x;
InsertANode( F, x );
DisplayANode( F );
return 0;
}
void InsertANode( Node* N, int X )
{
N -> info = X;
}
void DisplayANode( Node* N )
{
cout << N -> info;
}