Cod sursa(job #294114)

Utilizator harababurelPuscas Sergiu harababurel Data 2 aprilie 2009 12:33:25
Problema A+B Scor 0
Compilator cpp Status done
Runda infoexpert Marime 0.2 kb
#include <iostream.h>
#include <fstream.h>
int main() {
	long long 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;
	}