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

Envío 1112

Problema 0x78 - Suma de 2 números

  • Autor: EduardoVega
  • Fecha: 2020-10-10 21:46:53 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
    int main ()
        ^
SyntaxError: invalid syntax
0.023 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 3
    int main ()
        ^
SyntaxError: invalid syntax
0.036 s 3 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 3
    int main ()
        ^
SyntaxError: invalid syntax
0.024 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 3
    int main ()
        ^
SyntaxError: invalid syntax
0.031 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 3
    int main ()
        ^
SyntaxError: invalid syntax
0.026 s 3 KBi
Puntos totales: 0 / 100

Código

#include <stdio.h>

int main ()
{
  unsigned int a = 0, b = 0;
  scanf("%u%u", &a, &b);
  printf("%u", a + b);
  return 0;
}