i = 1;
while true % this is always true
    disp(x);
    x = x * i;
    i = i + 1;
end