Cod sursa(job #324390)

Utilizator CehashishChis Ovidiu Cehashish Data 15 iunie 2009 23:58:00
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <iostream.h>

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