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

Envío 1441

Problema 0x78 - Suma de 2 números

  • Autor: c4rlosc7
  • Fecha: 2020-10-27 00:47:27 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 1, in <module>
    num1 = int(input())
ValueError: invalid literal for int() with base 10: '3 4'
0.031 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>
    num1 = int(input())
ValueError: invalid literal for int() with base 10: '67 -100'
0.026 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>
    num1 = int(input())
ValueError: invalid literal for int() with base 10: '58 26'
0.025 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>
    num1 = int(input())
ValueError: invalid literal for int() with base 10: '-90 -53'
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 1, in <module>
    num1 = int(input())
ValueError: invalid literal for int() with base 10: '1 2147483646'
0.029 s 3 KBi
Puntos totales: 0 / 100

Código

num1 = int(input())
num2 = int(input())

print(num1 + num2)