#include<stdio.h>
struct node{
    int n[100];
    struct node*next;
};