fork download
  1. import math
  2.  
  3. x = 17.421
  4. y = 10.365
  5.  
  6. a = math.pow(y, 1/4) + math.pow(x + 1, 1/3)
  7. print(f"Result is a = {a:.4f}")
  8.  
Success #stdin #stdout 0.08s 14268KB
stdin
1
2
10
42
11
stdout
Result is a = 4.4353