int test(void) {
  int i;
  int j;
  int k;
  int m;
  int n;
  i = 1; j = 2; k = 3; m = 4; n = 5;
  if (!(i || j)) {
    i = 2;
  }
  return i;
}
