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