fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. if (7 & 8)
  5. printf("Honesty");
  6. if ((~7 & 0x000f) == 8)
  7. printf("is the best policy\n");
  8. }
Success #stdin #stdout 0s 5528KB
stdin
Standard input is empty
stdout
is the best policy