솔직히 파이썬은 len을 쓰면 해결이 된다. 하지만 자료구조를 이용해서 풀었다.
a = list(input()) i = 0 while a: a.pop() i += 1 print(i)