Learn how to add two numbers in C++:

Example

int x = 5;
int y = 6;
int sum = x + y;
cout << sum;



Practice Excercise Practice now