from math import exp
L = 0
for i in range (40):
    L = i/100000
    f = exp(-1500*L)
    if abs(f-0.7) <= 0.01:
        print(L,f)
