Cod sursa(job #521519)

Utilizator cr1st18Cristi cr1st18 Data 12 ianuarie 2011 19:05:06
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include<iostream>

using namespace std;

int a;
int b;

int main()
{
 
	FILE *f = fopen("adunare.in","r");
	
	fscanf(f,"%d %d",&a,&b);

	fclose(f);
	f = fopen("adunare.out","w");
	fprintf(f,"%d",a+b);
	fclose(f);
 	
return 0;
}