Cod sursa(job #294109)

Utilizator harababurelPuscas Sergiu harababurel Data 2 aprilie 2009 12:30:39
Problema A+B Scor 0
Compilator cpp Status done
Runda infoexpert Marime 0.19 kb
#include <iostream.h>
#include <fstream.h>
int main() {
	int a, b;
	ifstream f; f.open("suma.in");
	ofstream g; g.open("suma.out");
	f>>a>>b;
	g<<a+b;
	f.close();
	g.close();
	return 0;
	}