Cod sursa(job #3332417)

Utilizator alexygNegulescu Alexandru alexyg Data 6 ianuarie 2026 17:13:01
Problema A+B Scor 0
Compilator c-64 Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <stdint.h>
#include <stdio.h>

int main(){
    int32_t a;
    int32_t b;
    scanf("%d \n %d", &a ,&b);
    printf("%d", a+b);
    return 0;
}