Name: Anonymous 2009-04-01 16:01
Take a number from the standard input and output "Sussman" this many times, using Python.
(define (print-suss n)
(if (< n 1)
#t
(and (display "sussman\n")
(print-suss (- n 1)))))