#!/usr/local/bin/python
# $Id: strcat.python,v 1.5 2001/06/12 02:40:03 doug Exp $
# http://www.bagley.org/~doug/shootout/
# from Brad Knotwell
import sys,cStringIO
def main():
n = int(sys.argv[1])
str = cStringIO.StringIO()
for i in xrange(0,n):
str.write('hello\n')
print str.tell()
main()