Cod sursa(job #416302)
Utilizator | Data | 12 martie 2010 15:23:40 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<stdio.h>
int main()
{
freopen("suma.in","r",stdin);
#ifndef _SCREEN_
freopen("suma.out","w",stdout);
#endif
int a,b;
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
return 0;
}