fork download
  1. import math
  2.  
  3. a = int(input())
  4. b = int(input())
  5. c = int(input())
  6.  
  7. result = ( math.log(1 + c) / -b)**4 + abs(a)
  8.  
  9. print(result)
  10.  
Runtime error #stdin #stdout #stderr 0.02s 28384KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 3, in <module>
EOFError: EOF when reading a line