﻿from math import *

def Approxi():
    u=2
    n=0
    while u>1.001:
        u=sqrt(u)
        n=n+1
    l=(u-1)*2**n
    l=round(l,3)
    return l

