// fancyOutput3.cc P. Conrad CISC181 2/10/06
// show how to do fancy output with cout

#include <iostream>
using namespace std;

int main(void)
{
  int a=3;
  int b=4;

  cout << "Hello! \n"
       << "a + b=" << a + b  
       << " and that makes me happy." << endl;

  return 0;

}

// what would the output be?

