fork download
  1. #include <stdio.h>
  2. #define abc 1
  3.  
  4.  
  5. int main(void) {
  6. // your code goes here
  7.  
  8.  
  9. #if abc==0
  10.  
  11. printf("1");
  12. #else
  13. printf("2");
  14.  
  15. #endif
  16.  
  17.  
  18.  
  19.  
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
2