Cod sursa(job #17506)
| Utilizator | Data | 16 februarie 2007 01:15:04 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <stdio.h>
long a,b,c;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d %d", &a,&b);
c=a+b;
printf("%d", c);
return 0;
}