#ifndef NTT_H
#define NTT_H
#include <stdint.h>
void ntt(uint16_t *p);
void invntt(uint16_t *a);
#endif