#include <stdio.h>
#include "checkit.h"

double ratio(double x, double y) {

  if (y == 0) {
    return -1;
  }
  else {
     return x/y;
  }

/* return(0);*/
}

int comparison(int x, int y) {

  int flag1 , flag2;

  flag1 = x>y;
  flag2 = (x+3 % y == 4);

return (flag1 && flag2);

 }


int main() {
 /*float w;*/
  
 printf("%d\n", comparison(3,4)|| comparison(4,3));
 
 printf("%d\n", 4+5/3.0 > 4+5/3 && !(4 < 5));

  

 
return 0;
}