I have to find maximum of three number provided by user but with some restrictions. Its not allowed to use any conditional statement. I tried using ternary operator like bel
max = a > b ? ( a > c ? a : c ) : ( b > c ? b : c ) ;