#include <stdbool.h>

bool attack(int);

void init(int N, int K) {
    int t = N + 2 * K;
}

int new_pokemon() {
    if(attack(0)) return 1;
    else return 0;
}
