fork download
  1. var A = 0;
  2. var B = "";
  3. var C = "0";
  4.  
  5. if (A==B) print("A==B");
  6. if (A==C) print("A==C");
  7. if (B==C) print("B==C");
  8.  
Success #stdin #stdout 0s 171392KB
stdin
Standard input is empty
stdout
A==B
A==C