import math

x = 17.421
y = 10.365

a = math.pow(y, 1/4) + math.pow(x + 1, 1/3)
print(f"Result is a = {a:.4f}")
