Activity Program
int main()
{
    int temperature;    // The outside temperature
    GetTemp(temperature);              // Function call
    PrintActivity(temperature);        // Function call
    return 0;
}