#include <stdio.h>
#include <stdbool.h>
 
int main() {
    bool isRed = true;
    bool isBad = false;
 
    printf("%d kai %d\n", isRed, isBad);
}