// editor1
#include<stdio.h>
#include<stdlib.>
typedef struct node{
    int data;
    struct node *left;
    struct node *right;
}Node;
 node *create(int main){
     node *newnode(Node*)malloc(1*sizeof(Node*));
     newnode 
 }