﻿from math import *

n=0
t=100
while t>=50:
    n=n+1
    t=100*exp(-0.11*n)
print("n =",n,"t =",round(t,1))


