Cod sursa(job #411498)

Utilizator Dang0-DDavid Dango Dang0-D Data 4 martie 2010 22:20:03
Problema A+B Scor 0
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.18 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();
	return 0;
}