Cod sursa(job #1651447)

Utilizator sygAndreiIonitaIonita Andrei sygAndreiIonita Data 13 martie 2016 12:56:16
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 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;
}