fork download
  1. we=input()
  2. A, B=we.split()
  3. A=int(A)
  4. B=int(B)
  5. traf=input()
  6. C=int(traf)
  7. if C <= B and C>=A:
  8. print("BINGO")
  9. if C >= B:
  10. print(C-B)
  11. elif C <= A:
  12. print(A-C)
Compilation error #stdin compilation error #stdout 0.02s 9292KB
stdin
4 8
4
compilation info
Traceback (most recent call last):
  File "/usr/lib/python3.7/py_compile.py", line 143, in compile
    _optimize=optimize)
  File "<frozen importlib._bootstrap_external>", line 791, in source_to_code
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "./prog.py", line 10
    print(C-B)
        ^
IndentationError: expected an indented block

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3.7/py_compile.py", line 147, in compile
    raise py_exc
py_compile.PyCompileError: Sorry: IndentationError: expected an indented block (prog.py, line 10)
stdout
Standard output is empty