6 lines
127 B
Python
6 lines
127 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
sys.stdout.write("All work and no play makes Jack a dull boy.\n" * 1000)
|
|
sys.stdout.flush()
|