You should output what is specified in the output specification and nothing more. This "Enter..." text is probably the reason for WA.
[quote="sps"]
if ( !std::cin or std::cin.gcount() != 1 or number < 0 || number > 99)
{
std::cout<<"Invalid Input...Input Processing Finished\nOutput:\n";
break;
}
[/quote]
The input is guaranteed to be valid, so you don't need this at all.
(It can't hurt, though.)
Noix