// fancyOutput2.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=" << a << " and b is " << b 
       << " and that makes me happy." << endl;

  return 0;

}

// what would the output be?

