Cod sursa(job #332832)
Utilizator | Data | 20 iulie 2009 12:58:47 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.2 kb |
#include <stdio.h>
long a, b, c;
int main()
{
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
scanf("%ld%ld", &a, &b);
c = a + b;
printf("%ld\n", c);
return 0;
}