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

Envío 3572

Problema 0x78 - Suma de 2 números

  • Autor: jmarrietar
  • Fecha: 2021-03-28 03:00:40 UTC (Hace alrededor de 3 años)
Caso # Resultado Tiempo Memoria
#1
Esperando resultado...
#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()]
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.038 s 4 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()]
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.022 s 5 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()]
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.022 s 5 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()]
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.017 s 3 KBi
Puntos totales: 0 / 100

Código

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

print(a + b)