﻿from math import *
def seuil_C11():
  N=0;A=25
  while A<=40:
    N=N+1
    A=0.8*A+10
  return(N)