Cod sursa(job #12490)
| Utilizator | Data | 4 februarie 2007 10:22:08 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | c | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<stdio.h>
long a,b;
int main()
{
freopen("a+b.in","r",stdin);
freopen("a+b.out","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld",a+b);
return 0;
}