diff --git a/9.py b/9.py index d8928a5..7ffcdfb 100755 --- a/9.py +++ b/9.py @@ -21,4 +21,4 @@ def getTriplet(threshold): resultArray = getTriplet(int(sys.argv[1])); print "Result is: a=" + str(resultArray[0]) + " b=" + str(resultArray[1]) + " c=" + str(resultArray[2]); -print "Product is " str(int(resultArray[0]) * int(resultArray[1]) * int(resultArray[2])); \ No newline at end of file +print "Product is " + str(int(resultArray[0]) * int(resultArray[1]) * int(resultArray[2]));