fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {float x,y;
  5. cin>>x>>y;
  6. if (y<x && (x*x)+(y*y)>4 && x<2&&y>0) cout<<"Yes";else cout<<"No";
  7. return 0;
  8. }
Success #stdin #stdout 0s 4280KB
stdin
1.802 1.406
stdout
Yes