def parabole(x):
    y = x**2 + 3*x + 1
    return (x, y)
x = 1
for i in range(20):
    x = i
    print(parabole(x))