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

Envío 701

Problema 0x78 - Suma de 2 números

  • Autor: abatesins
  • Fecha: 2020-09-14 10:59:02 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
  File "script.py", line 3
    return a + b
    ^
SyntaxError: 'return' outside function
0.023 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 3
    return a + b
    ^
SyntaxError: 'return' outside function
0.034 s 3 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 3
    return a + b
    ^
SyntaxError: 'return' outside function
0.033 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 3
    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 3
    return a + b
    ^
SyntaxError: 'return' outside function
0.027 s 3 KBi
Puntos totales: 0 / 100

Código

if __name__ == '__main__':
  a, b = [int(i) for i in input().split()]
  return a + b