326836

python kod:

sayi = 0
check = True
l = []
for i in range(404):
    if check:
        sayi += 2
        check = False
    else:
        sayi += 6
        check = True
    l.append(sayi)

print(sum(l))