0 / 60 seg.

What is the result of the following code?

let c1 = 10, c2 = 20;
let c3 = c1 > 5 || c2 < 15 ? c1 + c2 : c1 - c2;
console.log(c3);