Cod sursa(job #798313)

Utilizator stefanutz13Smarandache Stefan stefanutz13 Data 16 octombrie 2012 11:19:13
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
#include<iostream>

using namespace std;

int main()
{
	int a,b;
	ifstream f("ab.in");
	ofstream g("ab.out");
	f>>a>>b;
	g<<(a+b);
	return 0;
}