Cod sursa(job #750323)
| Utilizator | Data | 21 mai 2012 21:10:57 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | c | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 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);
return 0;
}
