from math import *

def g(x):
    y=x-2+2*log(2/x)
    return y

def Solution():
    x=2
    a=g(x)
    while a<:
        x=x+0.01
        a=
    x=round(x-0.01,2)
    return x


