fork download
  1. import math
  2.  
  3. def calculate_a(x, y, z):
  4. return math.log10(math.sqrt(math.exp(x - y) + x * abs(y)) + z)
  5.  
  6. # Введення значень користувачем
  7. x = float(input("Please enter value for X: "))
  8. y = float(input("Please enter value for Y: "))
  9. z = float(input("Please enter value for Z: "))
  10.  
  11.  
  12. a = calculate_a(x, y, z)
  13.  
  14.  
  15. print("Result is a=%.6f" % a)
Success #stdin #stdout 0.02s 7396KB
stdin
1.542
-3.261
80.005
stdout
Please enter value for X: Please enter value for Y: Please enter value for Z: Result is a=1.960329