Cod sursa(job #319136)
Utilizator | Data | 30 mai 2009 17:07:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <stdio.h>
int a,b;
int main ()
{
freopen ("adunare.in","r",stdin);
freopen ("adunare.out","w",stdout);
scanf ("%d", &a);
scanf ("%d", &b);
printf ("%d", a+b);
return 0;
}