#7 def three_number_sum(x = " "): # it can only accept a three character string return(int(x[0]) + int(x[1]) + int(x[2])) #Example three_number_sum("123")