// Enter/edit your MiniScript code here.
// Then click the Run Script button below to make it go!
countdown = function(n)
for i in range(n,1)
print i + "..."
wait
end for
end function
s = input("Count down from: ")
countdown val(s)
print "Lift off!"