#include <stdio.h>
#include <limits.h>

int main() {
  int a = 10;
  int b = 10;

  printf("a < b: %d\n", a<b);

  return(0);
}
