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