C++ Programming

From Wikibooks, open books for an open world
Jump to navigation Jump to search
#include<iostream>

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