Cod sursa(job #1104255)

Utilizator costty94Duica Costinel costty94 Data 10 februarie 2014 17:15:49
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <stdio.h>

int main()
{
	int a,b,s=0;
FILE *f,*g;

f=fopen("f.txt","r");
g=fopen("g.txt","w");

fscanf(f,"%d %d",&a,&b);
s=a+b;
fprintf(g,"%d",s);
fclose(f); 
fclose(g);
return 0;
}