#include<iostream> using namespace std; int main() { int a,b; cout <<"Enter the number a and b"; cin>>a>>b; int c=a+b; cout<<"Sum is "<<c;