fork download
  1. import math
  2.  
  3. K = 4.201
  4. L = 3
  5.  
  6. x = float(input("Enter value for x: "))
  7.  
  8. a = math.sqrt(K * math.sqrt(x) + 2 - (1 / L) * (math.exp(2) - math.exp(-2)))
  9. b = math.sin(0.5 * math.atan(-0.25) * math.log(5))
  10.  
  11. if a > 2 * b:
  12. y = math.sqrt(3 * a - 5 * b)
  13. elif a == 2 * b:
  14. y = a
  15. else:
  16. y = math.sqrt(3 * a + 5 * b)
  17.  
  18. print("Result y = {:.4f}".format(y))
Success #stdin #stdout 0.01s 7880KB
stdin
3.14
stdout
Enter value for x: Result y = 3.1935