#ifndef ESTRUCTURA_H
#define ESTRUCTURA_H
    #include <stdio.h>
    typedef struct {
        int grado;
        int coeficiente;
    }monomio;
#endif