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