#include <stdio.h>

typedef struct celEstado *apontadorEstado;

typedef struct {
    char nome[30];
    int populacao;
    int beneficiarios;
    int qtdCidades;
    float idh;
    apontadorEstado proxEstado;
} celEstado;

int main(void) {
	// your code goes here
	return 0;
}
