█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 2967

Problema 0x60 - ¿Mayor, menor o igual?

  • Autor: davidtoca
  • Fecha: 2021-02-12 23:29:49 UTC (Hace alrededor de 3 años)
Caso # Resultado Tiempo Memoria
#1
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.027 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.033 s 3 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.026 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.026 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.03 s 3 KBi
#6
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.024 s 3 KBi
#7
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.029 s 3 KBi
#8
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.026 s 3 KBi
#9
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.024 s 3 KBi
#10
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 4
    print("=")
    ^
IndentationError: expected an indented block
0.034 s 3 KBi
Puntos totales: 0 / 100

Código

a, b = map(int, input().split())

if a==b:
print("=")
elif a > b:
print(">")
else:
print("<")