def suite(): u=1200 S=1200 n= 0 while S<50000: n=n+1 u=u*1.02 S=S+u return(n) >>> suite() 30