#!/usr/bin/env python3; import Utils import sys # Begin Main a = Utils.stoiWithDefault(sys.argv[1], 0) b = Utils.stoiWithDefault(sys.argv[2], 0) c = a + b print("{0:d} + {1:d} = {2:d}".format(a, b, c))