import sys input = sys.stdin.readline from collections import * C = input()[:-1] ans = 0 for i in range(1, len(C)): if C[i]!='0': ans += 1 print(ans)