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

Envío 3308

Problema 0x78 - Suma de 2 números

  • Autor: juanan150
  • Fecha: 2021-03-08 20:50:48 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 5, in <module>
    x,y = a.split()
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.025 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 5, in <module>
    x,y = a.split()
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
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 5, in <module>
    x,y = a.split()
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.028 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 5, in <module>
    x,y = a.split()
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.031 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 5, in <module>
    x,y = a.split()
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
0.028 s 3 KBi
Puntos totales: 0 / 100

Código

import sys
for line in sys.stdin:
    a = input

x,y = a.split()
print(int(x)+int(y))