/*--------------------------------------------------
created by smtuttle at Thu Oct 27 13:39:31 PDT 2016
--------------------------------------------------*/
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
using namespace std;


/*--------------------------------------------------
 signature: play_around : int -> int
 purpose: expects a quantity, and returns that
   quantity, and spews a bunch of stuff to
   the screen

 examples: play_around(3) == 3
           ..and print to the screen a bunch of junk
           play_around(4) == 4
           ...and print to the screen a bunch of junk
--------------------------------------------------*/

int play_around(int quant)
{
    cout << boolalpha;
    cout << 3;
    cout << endl << "Ob" << endl << "ama";
    cout << 'm';
    cout << sqrt(4);
    cout << true << "FINIS!" << endl
         << "and here is a lot more junk more more "
         << "more more more more more more more"
         << endl;

    return quant;
}