import sys map(lambda x: sys.stdout.write(" ".join((x, "\n"))), map(lambda x: "".join( "Fizz" * (not x%3) + "Buzz" * (not x%5) or str(x)), range(1, 101) ) )
whitespace.