Unfortunately the Apex programming language does not permit any way to directly compare two probe readings. The best you can do is to compare a probe value against a static number; for example:
If Tmp_L < 78.0 Then ON
In order to compare multiple probe readings, you'd need to utilize a virtual output:
TmpL_Compare
------------------------
Set OFF
If Tmp_L < 78.0 Then ON
TmpR_Compare
-----------------------
If Output TmpL_Compare = ON Then ON
If Tmp_R > 78.0 Then OFF
So if output TmpR_Compare = OFF, then that means that Tmp_L is reading lower than Tmp_R.
As you can see, this isn't really scalable because you might need to compare things over a range of temperatures.