Cod sursa(job #168695)
Utilizator | Data | 31 martie 2008 18:53:14 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <string.h>
#include <stdio.h>
int main (){
int a, b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf ("%d", &a);
scanf ("%d", &b);
printf ("%d\n", a+b);
return 0;
}