Cod sursa(job #489575)

Utilizator ShardEnache Andrei Shard Data 2 octombrie 2010 22:19:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
#include <stdio.h>
using namespace std;
int main()
{
	int a, b;
	ifstream f("adunare.in");
	f>>a>>b;
	ofstream g("adunare.out");
	g<<a+b;
	f.close();
	g.close();
	return 0;
}