Cod sursa(job #1172617)

Utilizator icristi01Cristian Ilca icristi01 Data 17 aprilie 2014 19:13:19
Problema A+B Scor 0
Compilator c Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <stdio.h>

int main()
{
    FILE *f, *g;
    int a,b;
    f=fopen("data.in","r");
    g=fopen("data.out","w");
    fscanf(f,"%d",&a);
    fscanf(f,"%d",&b);
    fprintf(g,"%d",a+b);
    fclose(f);
    fclose(g);
    return 0;
}