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

Envío 4844

Problema 0x60 - ¿Mayor, menor o igual?

  • Autor: skycru_
  • Fecha: 2021-08-31 21:00:04 UTC (Hace más de 2 años)
Caso # Resultado Tiempo Memoria
#1
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.02 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.024 s 3 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.023 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.02 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.033 s 3 KBi
#6
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.021 s 3 KBi
#7
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.02 s 3 KBi
#8
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.024 s 3 KBi
#9
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.032 s 3 KBi
#10
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 3, in <module>
    for num in input().split():
EOFError: EOF when reading a line
0.026 s 4 KBi
Puntos totales: 0 / 100

Código

for _ in range(10):
    number = []
    for num in input().split():
        number.append(num)
    if int(number[0]) < int(number[1]):
        print('<')
    elif int(number[0]) == int(number[1]):
        print('=')
    elif int(number[0]) > int(number[1]):
        print('>')