s = input() res = 0 for c in s: if ord(c) >= 49 and ord(c) <= 57: res += int(c) print(res)