You have two IntStream's. The first stream contains even numbers and the second stream contains odd numbers. In this task, you should implement a method that filters numbers from both streams which are divisible by both 3 and 5. You should return a third stream which contains the filtered numbers from both input streams by sorting them and removing the first two numbers (the two smallest numbers).
You need to return a prepared IntStream from a template method, not a list of integers. Pay attention to the method template. Do not change the signature of this method.