Cod sursa(job #1466928)

Utilizator atty97Toth Attila atty97 Data 1 august 2015 02:39:54
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
	ifstream i_file("adunare.in");
	ofstream o_file("adunare.out");
	int a;
	int b;

	i_file >> a >> b;
	o_file << a + b;

	return 0;
}