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