n=int(input("please input n:"))
s=0
for i in range(1,n):
if i % 3==0:
s=s+i
print("s=",s)
程序执行时,输入n的值为25,则输出的结果为( )