Input
Output
#include <iostream> using namespace std; int main() { int a=4,b=6,c; cout << "Enter the numbers:"; cout << a << " " << b << endl; c=a+b; cout << "Addition Of Two Number is:" << c << endl; return 0; }