#!/usr/bin/env python

import sys

if len(sys.argv) > 1:
    max = int(sys.argv[1])
else:
    max = 1
i = 0
while i < max:
    i += 1
