#include <inttypes.h>

int8_t int8_smaller_01(int8_t x,int8_t y)
{
  if (x < y) return 1;
  return 0;
}