Cod sursa(job #142413)

Utilizator andreirRoti Andrei andreir Data 24 februarie 2008 16:33:50
Problema A+B Scor 0
Compilator c Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>
void main()
{
	long int A,B;
	ifstream fin("adunare.in");
	ofstream fout("adunare.out");
	fin>>A>>B;
	fout<<A+B;
	fin.close();
	fout.close();
}