﻿from math import*
def plant():
    t=0
    h=20
    while h<=30:
        t=t+1
        h=120/(5*exp(-0.08*t)+1)
    return(t)


