fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a = 1;
  6. int b = 2;
  7. if (a == 1 and b == 2) {
  8. cout << "here you go";
  9. }
  10. return 0;
  11. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
here you go