Cod sursa(job #522102)

Utilizator RampageSergiu Caraian Rampage Data 14 ianuarie 2011 12:44:13
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
using namespace std;

int main ()
	{
	ifstream f ("Input.in");
	ofstream g ("Output.out");
	int a,b;
	f>>a>>b;
	g<<a+b;
	return 0;
	}