import math
print('Enter the value of "x": ')
x = int(input())
print('\nEnter the value of "y": ')
y = int(input())
print('Input the value of "z": ')
z = int(input())
denominator = math.pow(x+y, 6)
numerator = math.pow((math.pow((math.sqrt(((x*x)+(y*y)))), 0.333)), 3)
numerator1 = numerator+(math.pow(x+y, 2)+1)
fraction = denominator/numerator
if z>fraction:
print('\nThe values of both variables are equation, so here is the result: ', z)
else:
print('\nThe value of "z" is less then the equation, so here is the result: ', math.sqrt(z))