Given two signed 32-bit integers a and b, create a C++ reference that aliases a.Update the value of a by adding b only through this reference.
a
b
Do not modify a directly after the reference is created.
Print the updated value of a.
Example
Input:
5 3
Output:
8
Constraints:
int32_t
Test Cases
Test Results
Input
Expected Output