#include<stdio.h>
#include<stdlib.h>
struct typedef node
{
    int data;
    struct node *head,*tail;
}Node;
Node *head=NULL,*tail=NULL;
void create(int num)
{
    Node* newNode=(Node*)malloc(sizeof(Node));
}