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

Envío 143

Problema 0x78 - Suma de 2 números

  • Autor: Edigi12
  • Fecha: 2020-08-30 21:42:34 UTC (Hace más 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 3, in <module>
    print(int(argv[1]) + int(argv[2]))
IndexError: list index out of range
0.029 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>
    print(int(argv[1]) + int(argv[2]))
IndexError: list index out of range
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>
    print(int(argv[1]) + int(argv[2]))
IndexError: list index out of range
0.027 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>
    print(int(argv[1]) + int(argv[2]))
IndexError: list index out of range
0.026 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>
    print(int(argv[1]) + int(argv[2]))
IndexError: list index out of range
0.035 s 3 KBi
Puntos totales: 0 / 100

Código

from sys import argv

print(int(argv[1]) + int(argv[2]))