fork download
  1. #This is my PYTHON program
  2. import math
  3.  
  4. x = 16.55
  5. y = -2.75
  6. CONSTANT = math.sqrt(10)
  7.  
  8. a = CONSTANT * (math.pow(3, math.sqrt(x)) + math.pow(x, (y + 2)))
  9.  
  10. print('Результат обчислення виразу a =', a)
Success #stdin #stdout 0.01s 7392KB
stdin
Standard input is empty
stdout
('\xd0\xa0\xd0\xb5\xd0\xb7\xd1\x83\xd0\xbb\xd1\x8c\xd1\x82\xd0\xb0\xd1\x82 \xd0\xbe\xd0\xb1\xd1\x87\xd0\xb8\xd1\x81\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xbd\xd1\x8f \xd0\xb2\xd0\xb8\xd1\x80\xd0\xb0\xd0\xb7\xd1\x83 a =', 276.44950487519185)