﻿from math import *

n=0
u=10
while u>=4:
    n=n+1
    u=10*exp(-0.22*n)
print("n =",n,"u =",round(u,2))


