/*
  Boolean type?
*/

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

int main() {
    bool isPrime = true;

    if (isPrime)
	printf("Yes.\n");

    return 0;
}
