#! /usr/bin/env python def countdown(n): if n ==0: print "Blastoff!" else: print n countdown (n-1) countdown (1000)