#!/usr/bin/env python3; import Utils import sys # Begin Main x = Utils.stoiWithDefault(sys.argv[1], 0) print("Start...") if (x > 10) : print("Greater than 10") else : print("Less than or equal to 10") print("Finish...")