somme = 0
c = 0
for i in range(50,100,2):
    c += 1
    somme += i*c
print(somme)
