13. Given a string s = “12345”. Can you write an expression that gives sum of all the digits shown inside the string s i.e., the program should be able to produce the result as 15 (1 + 2 + 3 + 4 + 5). [Hint. Uses indexes and convert to integer] / sa 11 cs chapter 7, sa 11 ip chapter 4, Uncategorized / By PythonCSIP CS IP # Output s = “12345” ans = sum(int(s[i]) for i in range(5)) print(ans)