Cod sursa(job #227673)
Utilizator | Data | 5 decembrie 2008 10:22:17 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <stdio.h>
int main()
{
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
int a,b,s;
scanf("%d%d",&a,&b);
s=a+b;
printf(s);
return 0;
}