Cod sursa(job #711204)
Utilizator | Data | 11 martie 2012 17:01:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#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",a+b);
return 0;
}