int test(void) {
  int a;
  int b;
  int c;
  int d;
  int cond;
  if (((a <= b) || (a + (b && c) + d)) && ((a == b) || (c > d))) {
      a = b = c = d;
  }
  return 0;
}
