// 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 and b are: " << a << b << endl
       << " and that makes me happy." << endl
       << "not really.... cuz they ran together..." << endl;
  return 0;

}

// what would the output be?

