ANS:


count = 10;
while count >= 0
    disp(count);
    count = count -1;
end
disp('Blast off!')