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

Envío 4504

Problema 0x78 - Suma de 2 números

  • Autor: debans
  • Fecha: 2021-07-07 17:42:31 UTC (Hace más de 2 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 = int(input())
ValueError: invalid literal for int() with base 10: '3 4'
0.018 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 = int(input())
ValueError: invalid literal for int() with base 10: '67 -100'
0.02 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 = int(input())
ValueError: invalid literal for int() with base 10: '58 26'
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 = int(input())
ValueError: invalid literal for int() with base 10: '-90 -53'
0.023 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 = int(input())
ValueError: invalid literal for int() with base 10: '1 2147483646'
0.019 s 3 KBi
Puntos totales: 0 / 100

Código

a = int(input())
b = int(input())

print(a+b)