Cod sursa(job #966835)
| Utilizator | Data | 26 iunie 2013 17:12:35 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | c | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <stdio.h>
int main()
{
freopen ("adunare.in","r",stdin);
freopen ("adunare.out","w",stdout);
int a,b;
scanf("%d%d", &a, &b);
printf("%d", a + b);
}