What is the output of the following code segment:     a = 3;…

What is the output of the following code segment:     a = 3; b = 4; c = 5; if (a + 1 > c)       fprintf(‘%g%g’,a,c) elseif (b == c – 1)      fprintf(‘%g%g’,a,b)   elseif (a < c)       fprintf('%g%g',b,c) else       fprintf('%g%g',b,a) end