#include<stdio.h>
#include<stdio.h>
struct node
{
    int data;
    struct node* next;
};
struct node* head=NULL;
struct newnode=(struct node*)malloc(sizeof(struct node));
newnode->data=value;
newnode->next=head;
head=newnode;
struct node* temp=head;
while(temp!=NULL)
{
    temp->data=val;
    temp->next=NULL;
}
int main()
{
    int n;
    scanf("%d",&n);
    
}
return 0;
}