Write a python program that has a user input a string of three numbers separated by commas, such as "32, 13, 15", and prints the sum of the numbers.
For example Enter your three numbers separated by commas: 32, 13, 15 The sum is 60
I am able to print out the string with the split at the comma, but cannot figure out how to do the sum portion.