Cod sursa(job #737556)

Utilizator eddy13579Eduard Stoica eddy13579 Data 19 aprilie 2012 17:42:32
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
	ifstream f("suma.in");
	ofstream g("suma.out");
	int a,b;
	f>>a;
	f>>b;
	g<<a+b;
	return 0;
}