-
Notifications
You must be signed in to change notification settings - Fork 107
Sum without '+' #2
Copy link
Copy link
Open
Description
Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -
Input Format
Input two integers a and b
Constraints
Use of "+" and "-" operators are not allowed
Output Format
Print the sum of a and b
Sample Input
2
-1
Sample Output
1
Explanation
Sum of 2 and -1 is 1
Reactions are currently unavailable