Cod sursa(job #1439786)

Utilizator UVT_CompilationTerrorUVT Marcus Mateescu Spataru UVT_CompilationTerror Data 23 mai 2015 09:57:49
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <bits/stdc++.h>

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;
}