July 29, 2012

Electronic Supersonic

def blast(x):
  if x<=0: print "Offblast!"
  else:
    if x!=2: print x
    blast(x-1)

No comments: