from math import cos
u = 1
for n in range(31):
    u = cos(u)
    print('n = {} et u = {}'.format(n,u))
