Программа:
Python:
from math import *
x = int(input('x = '))
y = int(input('y = '))
a = log(sqrt(exp(x*y)) + 2**abs(x))
b = sin(x - 2) + (cos(y - 1))**2
if x != 1: c = (2*sin(x*x - b*y))/(1 + x*x - 2*x)
u = min(max(a, b), c)
print(u)
Программа:
Python:
from math import *
x = int(input('x = '))
y = int(input('y = '))
a = log(sqrt(exp(x*y)) + 2**abs(x))
b = sin(x - 2) + (cos(y - 1))**2
if x != 1: c = (2*sin(x*x - b*y))/(1 + x*x - 2*x)
u = min(max(a, b), c)
print(u)