#include<stdio.h>
#include<stdlib.h>
typedef struct node
{
    int data;
    struct node*list;
}Node;
printf("AB+CD-*");