from math import *
def temps() : 
  x=1
  y=6*x*exp(-x)
  while y>=..........:
    x=x+1
    y=...........
  return(x)

