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