Question
Find the value of string
You are given a string str which has one plus ("+") sign, everything to the left of this sign can be considered as num1 and everything to the right is num2. You have to print num1 + num2. For eg: str="123+9", num1+num2 = 132.
Input
The first line contains a string str.

Constraints
3 ≤ length of string ≤ 15
Output
Print one integer - the result of num1+num2.
Example
Sample Input
0+0
Sample Output
0

Sample Input
2+32
Sample Output
34

Online