Node* Insert(Node *head,int data)
{
Node *current=head;
Node *new=(Node *)malloc(size0f(Node));
new->data=data;
while(current->next!=NULL)
{
current=current->next;
}
current->next=new;
new->next=NULL;
return head;
}
Node* Insert(Node *head,int data)
{
Node *c