单项选择题

有以下程序:
main()
int i,s=1;
for(i=1;i<50;i++)
if(!(i%5)&&!(i%3)) s+=i;
printf("%d\n",s);
程序的输出结果是

A.409
B.277
C.1
D.91