Cod sursa(job #509473)
| Utilizator | Data | 11 decembrie 2010 09:55:16 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <stdio.h>
int main()
{
int a=0,b=0;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}