Cod sursa(job #411517)

Utilizator Dang0-DDavid Dango Dang0-D Data 4 martie 2010 22:36:16
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
#include <iostream>
using namespace std;
ifstream f("adun.in");
ofstream g("adun.out");

int main() {
	int a,b;
	f>>a>>b;
	g<<a+b;
	f.close();
	g.close();
	return 0;
}