sum=0;sum1=0
for i in range(0, 100):
if i%3==0 and i%5!=0:
sum+=i
if i%3==0 and i%5==0:
sum1+=i
print(sum)
print(sum1)
执行改程序段,输出的 sum1 值是 ( )