Wrong anti-spam code

Formulation

Write a code that checks whether the real number x belongs to the union of the open intervals \((5,15)\cup(95,202)\). If it does, the program should print yes. If it does not, the program should print no.

You should only write the code that replaces the text // ??? //.

#include<iostream>
int main(){
   double x;
   std::cin>>x;
   // ??? //
   return 0;
}

Your submission


Picture
Prove that you are not a robot.