Cod sursa(job #497616)

Utilizator mare95Mare Adrian Sorin mare95 Data 2 noiembrie 2010 22:26:06
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.3 kb
#include <stdio.h>
using namespace std;

int main(int argc, char *argv[])
{
    int a,b;
FILE *f,*g;
    
    f=fopen("suma.in","r");
    g=fopen("suma.out","w");
    
       fscanf(f,"%d %d",&a,&b); 
       fprintf(g,"%d",a+b);
                                   
    return 0;
}