Cod sursa(job #468194)
Utilizator | Data | 2 iulie 2010 16:58:06 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <stdio.h>
#include <stdlib.h>
int main() {
long a,b;
long long c;
freopen ("adunare.in", "r", stdin);
freopen ("adunare.out", "w", stdout);
scanf ("%ld %ld", &a,&b);
c=a+b;
printf ("%lld",c);
return 0;
}