#ifndef NUMBERS_H
#define NUMBERS_H
#include <stdint.h>
#include <sys/types.h>
typedef u_int64_t u64;
typedef size_t usize;
typedef u_int8_t u8;
typedef u_int32_t u32;
typedef u_int16_t u16;
typedef int32_t i32;
typedef int64_t i64;
typedef int16_t i16;
typedef char i8;
#endif