#include<stdio.h>
#include<stdlib.h>
struct node {
    int key;
    struct node*left,*right;
    int heigt;
    
};
int max(int a,int b) {
    return(a>b)?
};