What is the output of the following code snippet?        a =…

What is the output of the following code snippet?        a = 20;       b = 21;       c = 17;       while true              if (a > b) && (a ~= c)                     a = a – 1;                     break;              elseif a == b                     b = b – 1;                     continue;              else                     a = a + 1;              end              c = c + 1;       end       a = a + 1;       b = b – 1;       fprintf(‘%d%d\n%d\n’, a, b, c);