fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a=1,b=0;
  5. while(a<=100)
  6. {
  7. if(a%3!=0&&a%5!=0){
  8. b=b+a;}
  9. a=a+1;
  10. }
  11.  
  12. printf("%d",b);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
2632