Cod sursa(job #732054)
Utilizator | Data | 9 aprilie 2012 16:54:09 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.26 kb |
//Solving the hardest problem from wef's list :P
#include <stdio.h>
int main ()
{
int A, B;
freopen ("adunare.in", "r", stdin);
freopen ("adunare.out", "w", stdout);
scanf ("%d%d", &A, &B);
printf ("%d", A + B);
return 0;
}