Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
created by st10 at Mon Mar 22 13:57:01 PDT 2010
--------------------------------------------------*/
#include <iostream>
#include <cmath>
using namespace std;


/*--------------------------------------------------
 Contract: playing : int -> int
 Purpose: to play with assignment -- it expects an integer amount
         and it produces 47 more than that amount

 Examples: playing(5) == 52
--------------------------------------------------*/

int playing(int amount)
{
    int look_at_me;

    look_at_me = 6;
    look_at_me = 47;

    return amount + look_at_me;
}