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

Envío 7221

Problema 0x78 - Suma de 2 números

  • Autor: taopaipai
  • Fecha: 2024-02-10 20:21:01 UTC (Hace 3 meses)
Caso # Resultado Tiempo Memoria
#1
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    a, b = map(int, input().split())
    ^
IndentationError: unexpected indent
0.009 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    a, b = map(int, input().split())
    ^
IndentationError: unexpected indent
0.01 s 3 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    a, b = map(int, input().split())
    ^
IndentationError: unexpected indent
0.008 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    a, b = map(int, input().split())
    ^
IndentationError: unexpected indent
0.01 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 2
    a, b = map(int, input().split())
    ^
IndentationError: unexpected indent
0.013 s 3 KBi
Puntos totales: 0 / 100

Código

  a, b = map(int, input().split())
  sum = a + b
  print(sum)