Cod sursa(job #579836)

Utilizator andrei_1995Basescu Andrei andrei_1995 Data 12 aprilie 2011 15:11:05
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream>
#include<fstream>
using namespace std;
int main(void)
{
	ifstream f("date.in");
	ofstream g("date.out");
	int a,b;
	f>>a;
	f>>b;
	g<<a+b;
	f.close();
	g.close();
}