fork download
  1. A,B = input().split()
  2. A,B = int(A),int(B)
  3. if A == B:
  4. print("O JOGO DUROU","24","HORA(S)")
  5. if A > B:
  6. P = A-B
  7. Q = 24-P
  8. print("O JOGO DUROU",Q,"HORA(S)")
  9. if A < B:
  10. M = B-A
  11. print("O JOGO DUROU",M,"HORA(S)")
Runtime error #stdin #stdout #stderr 0.11s 23572KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
EOFError: EOF when reading a line