Cod sursa(job #1385234)

Utilizator Dragne.Andrei11Dragne Andrei Dragne.Andrei11 Data 11 martie 2015 19:53:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <cstdio>

using namespace std;

int main()
{
    freopen("adunare.in", "r", stdin);
    freopen("adunare.out", "w", stdout);
    int a, b;

    scanf("%d%d", &a, &b);
    printf("%d\n", a+b);

    return 0;
}