/* ifint_64.c an 'if' statement that will be coded for nasm */
#include <stdio.h>
int main()
{
  long int a=1;
  long int b=2;
  long int c=3;

  if(a<b)
    printf("true a < b \n");
  else
    printf("wrong on a < b \n");

  if(b>c)
    printf("wrong on b > c \n");
  else
    printf("false b > c \n");

  return 0;
}