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

Envío 5340

Problema 0x78 - Suma de 2 números

  • Autor: rod
  • Fecha: 2021-11-10 03:44:22 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
  File "script.py", line 2
    return a + b
    ^
SyntaxError: 'return' outside function
0.025 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    return a + b
    ^
SyntaxError: 'return' outside function
0.026 s 2 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    return a + b
    ^
SyntaxError: 'return' outside function
0.022 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    return a + b
    ^
SyntaxError: 'return' outside function
0.025 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    return a + b
    ^
SyntaxError: 'return' outside function
0.022 s 3 KBi
Puntos totales: 0 / 100

Código

a, b = [int(x) for x in input().split()]
return a + b