Cod sursa(job #2702471)

Utilizator florinliviu09Florin Liviu Magadan florinliviu09 Data 4 februarie 2021 11:08:01
Problema A+B Scor 0
Compilator c-32 Status done
Runda Lista lui wefgef Marime 0.15 kb
#include <stdio.h>
#include <stdlib.h>

int main()
{
    long long int a,b;
    scanf("%lld\n%d", &a, &b);

    printf("%d", a+b);
    return 0;
}