Write a program that perfom addition on two numbers

#include<iostream>
using namespace std;
int main()
{
int a = 3, b = 5;
cout << a << '+' << b << '=' << (a+b);
return 0;
}


Ø Output of Program

No comments:

Post a Comment

Total Pageviews