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

Envío 3576

Problema 0x60 - ¿Mayor, menor o igual?

  • Autor: jmarrietar
  • Fecha: 2021-03-28 03:09:02 UTC (Hace alrededor de 3 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.022 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.028 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.018 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.015 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.03 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.016 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.025 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.018 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 1, in <module>
    a, b = [int(x) for x in input().split]
TypeError: 'builtin_function_or_method' object is not iterable
0.022 s 3 KBi
Puntos totales: 0 / 100

Código

a, b = [int(x) for x in input().split]

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