# Задание 1
m = float(input('m = '))
v = float(input('v = '))
g = float(input('g = '))
h = float(input('h = '))
print(((m*(v*v))/2)+(m*g*h))
#Задание 2
from math import sqrt
x = float(input('x = '))
print((sqrt(x +1) + sqrt(x - 1))/(2*sqrt(x)))
Объяснение:
Python 3.8.2
# Задание 1
m = float(input('m = '))
v = float(input('v = '))
g = float(input('g = '))
h = float(input('h = '))
print(((m*(v*v))/2)+(m*g*h))
#Задание 2
from math import sqrt
x = float(input('x = '))
print((sqrt(x +1) + sqrt(x - 1))/(2*sqrt(x)))
Объяснение:
Python 3.8.2