you can use a variant of the using statement using std::cout; using std::cin; thereby qualifying those method names only.
I realize that I might have been confusing. If you put using std::cout;
once underneath your #include (though it could be anywhere) you're covered for the remainder of the program in being able to use cout without the std::. Do the same for any members of the std:: namespace that you need. The way you did it is totally fine and is in fact preferred by a lot of people, but if you're just starting out it can be painful.