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