﻿from math import *

def D(Rayon):
    n=0
    r=4
    while r>Rayon:
        r=r*exp(-1/2)
        n=n+1
    return n


