/* booleans and C */

#include <stdio.h>
/*
#define boolean_t int
*/ 
/*
#define TRUE 1
#define FALSE 0
*/

/* another approach , use typedef 
typedef int boolean_t;
*/


/* yet another approach, use typedef and enum */
typedef enum {FALSE, TRUE} boolean_t;


int main() 
{
  int x, z;
  boolean_t xIsFive, zAsBig, result= FALSE;

 
  scanf("%d %d", &x, &z);
  xIsFive= (x > 5 && x < 15);
  zAsBig= (z >= x);
  if (xIsFive || zAsBig) {
    result= TRUE;
  }

  printf("xIsFive == %d, zAsBig == %x, result == %d\n",
	 xIsFive, zAsBig, result);

  return 0;
}

