s=list(input()) l=[] for i in s: if i.isdecimal(): l.append(int(i)) if len(l)==0: print(0) else: print(sum(l))