Cod sursa(job #772442)

Utilizator johnnycr7Adascalitei Ioan johnnycr7 Data 29 iulie 2012 19:08:12
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
	int a,b,s;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	s=a+b;
	g<<s;
	f.close();
	g.close();
	return 0;
}