package hw6b;
import java.util.*;

public class HW6B {

    // this method should return true if and only if lst1 and lst2 have
    // a common Integer
  public static boolean haveCommonElements(List<Integer> lst1, List<Integer> lst2) {

      return false;
  }



  public static void main(String[] args) {

}

}
