File "C:\pythonEX\pythonProject\동빈나 알고리즘\001 그리디3.py", line 6, in addmul sum+=(s[i]) TypeError: unsupported operand type(s) for +=: 'int' and 'str'
6번째 줄에 데이터 타입 에러가 떴는데 여기서 s는 문자열이며 문자열끼리 더했을때 문제가 일어나므로,
int 화 시켜줘서 더하기를 시켜야 한다.