How to extract from two lists only the elements with the same index and value?

Hi everyone,
I need, in these two lists, to extract only the elements with the same index and value. Then, I need to select the greater value, while maintaining the original structure of the first list. I am aware that accomplishing this is straightforward in Python, but perhaps someone knows how to achieve it using nodes or simple code blocks.

From this example I need to get list like that:
0 List
-I need to take only 1286 but from point 3, not 0(because its index is the same as in the point.z list)
1 List
-1286 from point 3
2 List
-1286 also from point 3

Thanks in advance:)