#include using namespace std; double harmean(int x,int y); int main() { int a, b; cout<<"Please, enter two integers: "; while (!(cin>>a)||!(cin>>b)||a==0||b==0) { cin.clear(); while(cin.get()!='\n') continue; cout<<"\nPlease, enter two integers: "; } cout<<"\nThe harmonic mean of "<