% 4.1 Considering the following script: % a = 1; % b = 2; % c = 3; % if ( ( b * c ) == a ) % a = 5; % else % a = b + c; % end % b = a + (c^2) % What is the value of b after this is run? b = 14