fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int x;
  6. printf("input plz\n");
  7. scanf("%d", &x);
  8. if(x%2==0 && x%3==0)
  9. printf("yes\n");
  10.  
  11.  
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4520KB
stdin
6
stdout
input plz
yes