I'm trying to figure out how you can overload the input operator for some input but use the normal input operator for other values. For instance,
cin >> a; //take in a normally
in >> b; //pass with the overloaded input operator
How do I differentiate when writing the overloaded operator function?