#!/usr/bin/env python3; import Utils import sys # Begin Main max = 5 if (len(sys.argv) == 2) : max = Utils.stoiWithDefault(sys.argv[1], 5) for i in range(0, max) : print("Hello, world!")