#include 

#include 

int main()

    {

    int find;

    int cool[5];

    cool[0];

    cool[1];

    cool[2];

    cool[3];

    cool[4];

    int j = 0;

    cout << "Please Enter 5 Numbers Seperated Bt Spaces\n";

    cin >> cool[0] >> cool[1] >> cool[2] >> cool[3] >> cool[4];

    cout << "What Number do You Want To Find\n";

    cin >> find;

    while(j != 4)

        {

        if(find == cool[j])

            {

            cout << "The Number Is In: " << "cool[" << j << "]" << "Array\n\n" << "The Number Is" << cool[j] << "\n\n";

        }

        else

            {

        }

        j++;

    }

    system("PAUSE");

    return 0;

}