fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5.  
  6. scanf("%d", &a);
  7. if(a==0){
  8. printf("0です。\n");
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
0です。