Cod sursa(job #959698)
Utilizator | Data | 8 iunie 2013 15:12:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<fstream>
int u,p;
FILE *f,*g;
int main()
{
f=fopen("adunare.in.txt","r");
g=fopen("adunare.out.txt","w");
fscanf(f,"%i %i",&u,&p);
fprintf(g,"%i",u+p);
fclose(f);
fclose(g);
}