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

Envío 4191

Problema 0x78 - Suma de 2 números

  • Autor: Dlopez94
  • Fecha: 2021-05-29 15:58:57 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    print(a+b)
    ^
SyntaxError: invalid syntax
0.02 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    print(a+b)
    ^
SyntaxError: invalid syntax
0.038 s 7 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    print(a+b)
    ^
SyntaxError: invalid syntax
0.026 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    print(a+b)
    ^
SyntaxError: invalid syntax
0.025 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    print(a+b)
    ^
SyntaxError: invalid syntax
0.019 s 3 KBi
Puntos totales: 0 / 100

Código

a,b = [int(x) for x in input("Select two numbers: ").split()
print(a+b)