import math
x = float(input("ВВести "))
f = 1+math.log(math.e, 20*x+1)
f2 = math.pow(math.sin(x+1), 2) * math.exp(x)
print(f, f2)
import math
x = float(input("ВВести "))
f = 1+math.log(math.e, 20*x+1)
f2 = math.pow(math.sin(x+1), 2) * math.exp(x)
print(f, f2)