s = list(input()) res = 0 for w in s: if 49 <= ord(w) <= 57: res += int(w) print(res)