#ifndef BOOL_H
#define BOOL_H
typedef int bool;
const int true = 1;
const int false = 0;
#endif
