You are given a string which consists of lowercase, uppercase alphabets and numbers in it. Such strings are called alphanumeric strings.
Your task is simple, you just need to separate the numbers from the alphanumeric string and output their sum.
Constraints:
1 <= |s| <= 10000
Input Format:
There is only 1 line of input consisting of the alphanumeric string.
As there are 3 numbers in the above string: 8,6 and 2
Output will be 8+6+2 = 16