fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a;
  6.  
  7. scanf("%d",&a);
  8.  
  9. if(a%3==0)
  10. printf("Fizz");
  11. if(a%5==0)
  12. printf("Buzz");
  13.  
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0.01s 5280KB
stdin
9
stdout
Fizz