Cod sursa(job #208652)
Utilizator | Data | 17 septembrie 2008 18:28:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <stdio.h>
int a,b;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d %d", &a, &b);
printf("%d", a + b);
return 0;
}