Cod sursa(job #203503)

Utilizator AdrianSoucupAdrian Soucup AdrianSoucup Data 16 august 2008 22:59:40
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream.h>

int main ()
{
	long a, b, r=1;
	ifstream fin("cmmdc.in");
	ofstream fout("cmmdc.out");
	fin>>a>>b;
	
	
    fout<<b+a;
	
	fin.close();
	fout.close();
	return 0;
}