Cod sursa(job #61035)

Utilizator pohoatzapohoatza pohoatza Data 17 mai 2007 22:26:26
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
using namespace std;
#include<fstream>
int main(){
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	long a, b;
	f>>a>>b;
	g<<a+b;
	return 0;
}