from math import*
def concentration():
  t=0
  c=1.3
  while ... :
    t=t+0.1
    c=...
  return(t)
  
  
  