fork download
  1. def g(x, y, z):
  2. return (x * y + y * z + x * z) / ((x + y + z) / 2)
  3.  
  4. # Wartości wejściowe
  5. x = 1562
  6. y = 3861
  7. z = 131623
  8.  
  9. # Obliczenie wyniku
  10. result = g(x, y, z)
  11. print(result)
  12.  
Success #stdin #stdout 0.01s 7160KB
stdin
Standard input is empty
stdout
10504