Cod sursa(job #319617)
Utilizator | Data | 1 iunie 2009 16:06:57 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<stdio.h>
long a,b;
int main ()
{ freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%ld",&a);
scanf("%ld",&b);
printf("%ld",a+b);
return 0;
}