Cod sursa(job #977182)
Utilizator | Data | 24 iulie 2013 23:24:36 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | c | Status | done |
Runda | Lista lui wefgef | Marime | 0.23 kb |
#include<stdio.h>
int main(){
long x,y;
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
scanf("%ld %ld", &x, &y);
printf("%ld\n", x+y);
fclose(stdin);
fclose(stdout);
return 0;
}