I am researching ways to calculate lcm and came across this line and am trying to understand what it is saying, or possibly a more basic way to write it
lcm = (userNum1 > userNum2) ? userNum1 : userNum2;
The code runs fine, but if I don't understand it, I'm not going to be able to comprehend how to use it later.