fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a,b,c;
  6. if(a=b && a+b>c ) cout<<"yes";
  7. else cout<<"no";
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 15232KB
stdin
2 2 3
stdout
no