Cod sursa(job #1366373)

Utilizator NegreanVictorNegrean Victor NegreanVictor Data 28 februarie 2015 23:41:33
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.22 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
	ofstream outf ("adunare.out");
	ifstream inf ("adunare.in");
	int a;
	inf >> a;
	int b;
	inf >> b;
	
	outf << a + b;
	outf.close();
	return 0;
}