total = 0

def arpro(n):
    val = 3 + (n - 1) * 2
    return val

for n in range(1,21):
    nth = arpro(n)
    total += nth
print "elvis10ten, the answer to your question is ", total + arpro(50)