def blowup(b,n):#b "réel", n entier
    a=b+1
    x=1
    for i in range(2,n):
        x=a*x-b
    print( "%20f" % x)
#2 blowup est censé afficher 1

blowup(255.0003,50)
