#include <stdio.h>
#include <stdbool.h>

bool escape_room(int x) {
    if (2 * x > 5) {
      return true;
    }
    if (x == 1) {
      return true;
    }
    return false;
}

int main() {
    printf("escape room %d\n", escape_room(4));
    return 0;
}
