We have a flow that emits all integer numbers.
Add transformations to it to only take the first 10 even numbers greater than 99. Also, convert these numbers into a string representation in the hexadecimal (base 16) format.
Tip: An even number is a number divisible by 2.
Tip: Convert int into string with a given radix using the Int.toString(radix: Int) function.
This task uses dependencies that may not be available in your local IDE. As a result, you may see compilation errors or unresolved references when running the code locally. This does not affect solution validation when you submit your solution to Hyperskill.