Cod sursa(job #500655)
Utilizator | Data | 12 noiembrie 2010 18:29:43 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <stdio.h>
int main()
{
int a,b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d\n%d",&a,&b);
int s=a+b;
printf("%d\n",s);
return 0;
}