#include
void main()
{
int i=1,s=0;
while(i<=100)
if(i%3==0 && i%5==0)
printf("%d ",i);
s+=i;
}
i++;
printf("\n这些数的和为:%d\n",s);