#include <math.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <time.h>
static int64_t height = 0,width = 0,obstacles = 0,player_alive = 1,bot_left = 3;
static int64_t bot[3][2][2],player[2][2],frame = 1,bomb[2] = {0,0};
static int64_t bomblocation[4][2],bombdirection[4][2],botalive[3] = {1,1,1};
static char **map = NULL;